亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Android中怎么實現一個圖片壓縮工具類

發布時間:2021-06-28 17:34:58 來源:億速云 閱讀:245 作者:Leah 欄目:移動開發

本篇文章為大家展示了Android中怎么實現一個圖片壓縮工具類,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

具體如下:

package com.sanweidu.TddPay.util2;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
public class ImaZipUtil {
  /**
   * 壓縮圖片到指定寬高,并進行質量壓縮,最終大小保持在100K以下
   *
   * @param sourceBm
   * @param targetWidth
   * @param targetHeight
   * @return
   */
  public static Bitmap zipPic(Bitmap sourceBm, float targetWidth, float targetHeight) {
    BitmapFactory.Options newOpts = new BitmapFactory.Options();
    // 開始讀入圖片,此時把options.inJustDecodeBounds 設回true了
    newOpts.inJustDecodeBounds = true;
    // 可刪除
    newOpts.inPurgeable = true;
    // 可共享
    newOpts.inInputShareable = true;
    // 轉成數組
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    sourceBm.compress(Bitmap.CompressFormat.JPEG, 100, baos);
    byte[] temp = baos.toByteArray();
    // 此時返回bm為空
    Bitmap bitmap = BitmapFactory.decodeByteArray(temp, 0, temp.length, newOpts);
    newOpts.inJustDecodeBounds = false;
    int w = newOpts.outWidth;
    int h = newOpts.outHeight;
    // 現在主流手機比較多是800*480分辨率,所以高和寬我們設置為
    float hh = targetHeight;
    float ww = targetWidth;
    // 縮放比。由于是固定比例縮放,只用高或者寬其中一個數據進行計算即可
    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.decodeByteArray(temp, 0, temp.length, newOpts);
    // 壓縮好比例大小后再進行質量壓縮
    return compressImage(bitmap);
  }
  /**
   * @Description 質量壓縮方法
   * @author XiongJie
   * @param image
   * @return
   */
  public static Bitmap compressImage(Bitmap image) {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    // 質量壓縮方法,這里100表示不壓縮,把壓縮后的數據存放到baos中
    image.compress(Bitmap.CompressFormat.JPEG, 100, baos);
    int options = 100;
    // 循環判斷如果壓縮后圖片是否大于100kb,大于繼續壓縮
    while (baos.toByteArray().length / 1024 > 100) {
      // 重置baos即清空baos
      baos.reset();
      // 這里壓縮options%,把壓縮后的數據存放到baos中
      image.compress(Bitmap.CompressFormat.JPEG, options, baos);
      // 每次都減少10
      options -= 10;
    }
    // 把壓縮后的數據baos存放到ByteArrayInputStream中
    ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());
    // 把ByteArrayInputStream數據生成圖片
    Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null);
    return bitmap;
  }
  /**
   * 只進行分辨率壓縮,不進行圖片的質量壓縮
   *
   * @param sourceBm
   * @param targetWidth
   * @param targetHeight
   * @return
   */
  public static Bitmap zipPicWithoutCompress(Bitmap sourceBm, float targetWidth, float targetHeight) {
    BitmapFactory.Options newOpts = new BitmapFactory.Options();
    // 開始讀入圖片,此時把options.inJustDecodeBounds 設回true了
    newOpts.inJustDecodeBounds = true;
    // 可刪除
    newOpts.inPurgeable = true;
    // 可共享
    newOpts.inInputShareable = true;
    // 轉成數組
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    sourceBm.compress(Bitmap.CompressFormat.JPEG, 100, baos);
    byte[] temp = baos.toByteArray();
    // 此時返回bm為空
    Bitmap bitmap = BitmapFactory.decodeByteArray(temp, 0, temp.length, newOpts);
    newOpts.inJustDecodeBounds = false;
    int w = newOpts.outWidth;
    int h = newOpts.outHeight;
    // 現在主流手機比較多是800*480分辨率,所以高和寬我們設置為
    float hh = targetHeight;
    float ww = targetWidth;
    // 縮放比。由于是固定比例縮放,只用高或者寬其中一個數據進行計算即可
    // be=1表示不縮放
    int 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.decodeByteArray(temp, 0, temp.length, newOpts);
    // 壓縮好比例大小后再進行質量壓縮
    return bitmap;
  }
}

上述內容就是Android中怎么實現一個圖片壓縮工具類,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

象山县| 洪江市| 思南县| 信阳市| 奉新县| 乐陵市| 衡水市| 陕西省| 抚顺县| 宜宾市| 全椒县| 汕尾市| 固原市| 福安市| 常山县| 宜宾县| 尖扎县| 武夷山市| 宕昌县| 广安市| 和静县| 墨江| 清涧县| 北流市| 英山县| 商丘市| 灵璧县| 清河县| 额济纳旗| 东乡| 大竹县| 宁阳县| 崇文区| 深圳市| 黑龙江省| 厦门市| 阿勒泰市| 西乡县| 平江县| 娄底市| 涞源县|