溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中怎么實(shí)現(xiàn)圖片壓縮功能

發(fā)布時間:2021-06-28 16:37:23 來源:億速云 閱讀:180 作者:Leah 欄目:移動開發(fā)

Android中怎么實(shí)現(xiàn)圖片壓縮功能,針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一、圖片質(zhì)量壓縮

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

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

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

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

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

關(guān)于Android中怎么實(shí)現(xiàn)圖片壓縮功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI