1. 程式人生 > >Android圖片壓縮方法並壓縮到指定大小

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

/** 
   * 圖片按比例大小壓縮方法 
   * @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;  
  }