Imageloader8-压缩图片
生活随笔
收集整理的這篇文章主要介紹了
Imageloader8-压缩图片
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
通過采樣率壓縮圖片的步驟:
BTW: 說一下BitmapFactory.Options的inJustDecodeBounds屬性,當參數設置為true時,BitmapFactory只會解析圖片的原始寬和高,并不會將圖片加載到內存中。
// 如果圖片不存在 則添加到任務隊列中addTask(new Runnable() {@Overridepublic void run() {// 加載圖片 TODO// 1.獲取圖片需要顯示的寬和搞ImageSize imageSize = getImageViewSize(imageView);// 利用Options壓縮圖片Bitmap bm = decodeSampledBitmapFromPath(path, imageSize.width, imageSize.height);// 添加到LruCache中addBitmapToLruCache(path, bm);// 發送消息,通知UIHandler更新圖片ImageBeanHoler holder = new ImageBeanHoler();holder.bitmap = getBitmapFromLruCache(path);holder.imageView = imageView;holder.path = path;Message message = Message.obtain();message.obj = holder;mUIHandler.sendMessage(message);// 執行完之后,釋放一個信號量,通知mPoolThread可以從任務隊列中獲取下一個任務了去執行了。mPoolThreadSemaphore.release();}}); /*** 根據計算的inSampleSize得到壓縮的圖片** @param path* @param reqWidth* @param reqHeight* @return*/private Bitmap decodeSampledBitmapFromPath(String path, int reqWidth, int reqHeight) {// 第一次解析將inJustDecodeBounds設置為true,不將圖片加載到內存,獲取圖片的大小BitmapFactory.Options options = new BitmapFactory.Options();options.inJustDecodeBounds = true;BitmapFactory.decodeFile(path, options);// 計算inSampleSizeoptions.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);// 使用獲取到的inSampleSize再此獲取圖片,加載到內存中options.inJustDecodeBounds = false;Bitmap bitmap = BitmapFactory.decodeFile(path, options);return bitmap;} /*** 這個方法用戶可以自己設置適合項目的圖片比例** @param options* @param reqWidth* @param reqHeight* @return*/private int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {// 源圖片的寬度int width = options.outWidth;int height = options.outHeight;int inSampleSize = 1;if (width > reqWidth && height > reqHeight) // ||也是可以的,看實際情況{// 計算出實際寬度和目標寬度的比率int widthRatio = Math.round((float) width / (float) reqWidth);int heightRatio = Math.round((float) width / (float) reqWidth);inSampleSize = Math.max(widthRatio, heightRatio); // 為了節省內存,取了大值。如果有變形,取小值試試。}return inSampleSize;}
總結
以上是生活随笔為你收集整理的Imageloader8-压缩图片的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Imageloader7-获取图片需要显
- 下一篇: 大数据文件分隔符