国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

android 上傳圖片(壓縮) Bitmap 轉File

2019-11-09 17:37:17
字體:
來源:轉載
供稿:網友
/**     * 壓縮圖片(質量壓縮)     * @param bitmap     */    public static File comPRessImage(Bitmap bitmap) {        ByteArrayOutputStream baos = new ByteArrayOutputStream();        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);//質量壓縮方法,這里100表示不壓縮,把壓縮后的數據存放到baos中        int options = 100;        while (baos.toByteArray().length / 1024 > 500) {  //循環判斷如果壓縮后圖片是否大于500kb,大于繼續壓縮            baos.reset();//重置baos即清空baos            options -= 10;//每次都減少10            bitmap.compress(Bitmap.CompressFormat.JPEG, options, baos);//這里壓縮options%,把壓縮后的數據存放到baos中            long length = baos.toByteArray().length;        }        SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");        Date date = new Date(System.currentTimeMillis());        String filename = format.format(date);        File file = new File(Environment.getExternalStorageDirectory(),filename+".png");        try {            FileOutputStream fos = new FileOutputStream(file);            try {                fos.write(baos.toByteArray());                fos.flush();                fos.close();            } catch (IOException e) {                BAFLogger.e(TAG,e.getMessage());                e.printStackTrace();            }        } catch (FileNotFoundException e) {            BAFLogger.e(TAG,e.getMessage());            e.printStackTrace();        }        recycleBitmap(bitmap);        return file;    }

//釋放

public static void recycleBitmap(Bitmap... bitmaps) {        if (bitmaps==null) {            return;        }        for (Bitmap bm : bitmaps) {            if (null != bm && !bm.isRecycled()) {                bm.recycle();            }        }    }


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 谢通门县| 寿宁县| 江源县| 富锦市| 东丰县| 普安县| 邻水| 周至县| 崇左市| 庐江县| 敦煌市| 滕州市| 德州市| 榆中县| 韶关市| 中江县| 浦北县| 佛山市| 兴安县| 博客| 铁岭市| 和政县| 上饶县| 岗巴县| 滨海县| 贵港市| 巴塘县| 寿阳县| 张家界市| 郑州市| 翁源县| 吴川市| 灵川县| 锡林郭勒盟| 田阳县| 石嘴山市| 乡城县| 会宁县| 德化县| 许昌市| 叙永县|