android 固定大小取圖片縮略圖

在作一個項目的時候有個要求就是固定大小取圖像的縮略圖,android2.2之前的話都是經過BitmapFactory.Options 設置Options經過必定的寬高比例來獲得一個縮略圖,可是獲得的並非要求的固定大小的縮略圖,而是寬和高按必定比例縮放後的,android2.2之後提供了一個新的類ThumbnailUtils類能夠直接獲取,可是考慮到2.2以版本的兼容性ThumbnailUtils雖然很好可是不適用,經過對 ThumbnailUtils類的解析,項目中抽出了一個新的類把ThumbnailUtils類中與圖片不相關的內容剔除出來,這樣就能夠兼容全部的版本:

    上代碼:android

        private static class ImageZoom {spa

 

private static final int OPTIONS_SCALE_UP = 0x1;orm

public static final int OPTIONS_RECYCLE_INPUT = 0x2;圖片

private static final int OPTIONS_NONE = 0x0;get

public static  Bitmap  extractThumbnail(Bitmap source, int width, int height)it

{io

return extractThumbnail(source,width,height,OPTIONS_NONE);form

}class

private static Bitmap  extractThumbnail(兼容性

           Bitmap source, int width, int height, int options) {

       if (source == null) {

           return null;

       }

       float scale;

       if (source.getWidth() < source.getHeight()) {

           scale = width / (float) source.getWidth();

       } else {

           scale = height / (float) source.getHeight();

       }

       Matrix matrix = new Matrix();

       matrix.setScale(scale, scale);

       Bitmap thumbnail = transform(matrix, source, width, height,

               OPTIONS_SCALE_UP | options);

       return thumbnail;

   }

private static Bitmap transform(Matrix scaler,

           Bitmap source,

           int targetWidth,

           int targetHeight,

           int options) {

       boolean scaleUp = (options & OPTIONS_SCALE_UP) != 0;

       boolean recycle = (options & OPTIONS_RECYCLE_INPUT) != 0;

 

       int deltaX = source.getWidth() - targetWidth;

       int deltaY = source.getHeight() - targetHeight;

       if (!scaleUp && (deltaX < 0 || deltaY < 0)) {

           Bitmap b2 = Bitmap.createBitmap(targetWidth, targetHeight,

           Bitmap.Config.ARGB_8888);

           Canvas c = new Canvas(b2);

           int deltaXHalf = Math.max(0, deltaX / 2);

           int deltaYHalf = Math.max(0, deltaY / 2);

           Rect src = new Rect(

           deltaXHalf,

           deltaYHalf,

           deltaXHalf + Math.min(targetWidth, source.getWidth()),

           deltaYHalf + Math.min(targetHeight, source.getHeight()));

           int dstX = (targetWidth  - src.width())  / 2;

           int dstY = (targetHeight - src.height()) / 2;

           Rect dst = new Rect(

                   dstX,

                   dstY,

                   targetWidth - dstX,

                   targetHeight - dstY);

           c.drawBitmap(source, src, dst, null);

           if (recycle) {

               source.recycle();

           }

           return b2;

       }

       float bitmapWidthF = source.getWidth();

       float bitmapHeightF = source.getHeight();

 

       float bitmapAspect = bitmapWidthF / bitmapHeightF;

       float viewAspect   = (float) targetWidth / targetHeight;

 

       if (bitmapAspect > viewAspect) {

           float scale = targetHeight / bitmapHeightF;

           if (scale < .9F || scale > 1F) {

               scaler.setScale(scale, scale);

           } else {

               scaler = null;

           }

       } else {

           float scale = targetWidth / bitmapWidthF;

           if (scale < .9F || scale > 1F) {

               scaler.setScale(scale, scale);

           } else {

               scaler = null;

           }

       }

       Bitmap b1;

       if (scaler != null) {

           b1 = Bitmap.createBitmap(source, 0, 0,

           source.getWidth(), source.getHeight(), scaler, true);

       } else {

           b1 = source;

       }

 

       if (recycle && b1 != source) {

           source.recycle();

       }

 

       int dx1 = Math.max(0, b1.getWidth() - targetWidth);

       int dy1 = Math.max(0, b1.getHeight() - targetHeight);

 

       Bitmap b2 = Bitmap.createBitmap(

               b1,

               dx1 / 2,

               dy1 / 2,

               targetWidth,

               targetHeight);

 

       if (b2 != b1) {

           if (recycle || b1 != source) {

               b1.recycle();

           }

       }

       return b2;

   }

}

相關文章
相關標籤/搜索