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

首頁 > 系統 > Android > 正文

Android圖片壓縮方法并壓縮到指定大小

2019-10-22 18:32:59
字體:
來源:轉載
供稿:網友

一、圖片質量壓縮

/**    * 質量壓縮方法    * @param image    * @return    */    public static Bitmap compressImage(Bitmap image) {      ByteArrayOutputStream baos = new ByteArrayOutputStream();      image.compress(Bitmap.CompressFormat.JPEG, 100, baos);// 質量壓縮方法,這里100表示不壓縮,把壓縮后的數據存放到baos中      int options = 90;      while (baos.toByteArray().length / 1024 > 100) { // 循環判斷如果壓縮后圖片是否大于100kb,大于繼續壓縮        baos.reset(); // 重置baos即清空baos        image.compress(Bitmap.CompressFormat.JPEG, options, baos);// 這里壓縮options%,把壓縮后的數據存放到baos中        options -= 10;// 每次都減少10      }      ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());// 把壓縮后的數據baos存放到ByteArrayInputStream中      Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null);// 把ByteArrayInputStream數據生成圖片      return bitmap;    }  

二、按比例大小壓縮 (路徑獲取圖片)

/**    * 圖片按比例大小壓縮方法    * @param srcPath (根據路徑獲取圖片并壓縮)    * @return    */    public static Bitmap getimage(String srcPath) {      BitmapFactory.Options newOpts = new BitmapFactory.Options();      // 開始讀入圖片,此時把options.inJustDecodeBounds 設回true了      newOpts.inJustDecodeBounds = true;      Bitmap bitmap = BitmapFactory.decodeFile(srcPath, newOpts);// 此時返回bm為空      newOpts.inJustDecodeBounds = false;      int w = newOpts.outWidth;      int h = newOpts.outHeight;      // 現在主流手機比較多是800*480分辨率,所以高和寬我們設置為      float hh = 800f;// 這里設置高度為800f      float ww = 480f;// 這里設置寬度為480f      // 縮放比。由于是固定比例縮放,只用高或者寬其中一個數據進行計算即可      int be = 1;// be=1表示不縮放      if (w > h && w > ww) {// 如果寬度大的話根據寬度固定大小縮放        be = (int) (newOpts.outWidth / ww);      } else if (w < h && h > hh) {// 如果高度高的話根據寬度固定大小縮放        be = (int) (newOpts.outHeight / hh);      }      if (be <= 0)        be = 1;      newOpts.inSampleSize = be;// 設置縮放比例      // 重新讀入圖片,注意此時已經把options.inJustDecodeBounds 設回false了      bitmap = BitmapFactory.decodeFile(srcPath, newOpts);      return compressImage(bitmap);// 壓縮好比例大小后再進行質量壓縮    }  

三、按比例大小壓縮 (Bitmap)

/**    * 圖片按比例大小壓縮方法    * @param image (根據Bitmap圖片壓縮)    * @return    */    public static Bitmap compressScale(Bitmap image) {      ByteArrayOutputStream baos = new ByteArrayOutputStream();      image.compress(Bitmap.CompressFormat.JPEG, 100, baos);      // 判斷如果圖片大于1M,進行壓縮避免在生成圖片(BitmapFactory.decodeStream)時溢出      if (baos.toByteArray().length / 1024 > 1024) {        baos.reset();// 重置baos即清空baos        image.compress(Bitmap.CompressFormat.JPEG, 80, baos);// 這里壓縮50%,把壓縮后的數據存放到baos中      }      ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());      BitmapFactory.Options newOpts = new BitmapFactory.Options();      // 開始讀入圖片,此時把options.inJustDecodeBounds 設回true了      newOpts.inJustDecodeBounds = true;      Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, newOpts);      newOpts.inJustDecodeBounds = false;      int w = newOpts.outWidth;      int h = newOpts.outHeight;      Log.i(TAG, w + "---------------" + h);      // 現在主流手機比較多是800*480分辨率,所以高和寬我們設置為      // float hh = 800f;// 這里設置高度為800f      // float ww = 480f;// 這里設置寬度為480f      float hh = 512f;      float ww = 512f;      // 縮放比。由于是固定比例縮放,只用高或者寬其中一個數據進行計算即可      int be = 1;// be=1表示不縮放      if (w > h && w > ww) {// 如果寬度大的話根據寬度固定大小縮放        be = (int) (newOpts.outWidth / ww);      } else if (w < h && h > hh) { // 如果高度高的話根據高度固定大小縮放        be = (int) (newOpts.outHeight / hh);      }      if (be <= 0)        be = 1;      newOpts.inSampleSize = be; // 設置縮放比例      // newOpts.inPreferredConfig = Config.RGB_565;//降低圖片從ARGB888到RGB565      // 重新讀入圖片,注意此時已經把options.inJustDecodeBounds 設回false了      isBm = new ByteArrayInputStream(baos.toByteArray());      bitmap = BitmapFactory.decodeStream(isBm, null, newOpts);      return compressImage(bitmap);// 壓縮好比例大小后再進行質量壓縮      //return bitmap;    }  

以上所述是小編給大家介紹的Android圖片壓縮方法并壓縮到指定大小,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VEVB武林網網站的支持!


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 桐柏县| 德钦县| 眉山市| 城口县| 茌平县| 股票| 丽江市| 东乌珠穆沁旗| 建水县| 家居| 彭水| 辽源市| 金昌市| 阿拉尔市| 仁寿县| 灌南县| 敖汉旗| 怀宁县| 栾城县| 宁南县| 亳州市| 右玉县| 阿巴嘎旗| 固原市| 井冈山市| 凤山市| 苍南县| 宝应县| 荣成市| 罗江县| 永胜县| 德清县| 百色市| 奎屯市| 金塔县| 临湘市| 行唐县| 崇仁县| 钟山县| 尼勒克县| 阿克苏市|