Android异步加载全解析之大图处理
Android异步加载全解析之大图处理
为什么要对图像处理
BitmapFactory之inSampleSize
BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeResource(getResources(), R.id.myimage, options); // 获取属性值 int imageHeight = options.outHeight; int imageWidth = options.outWidth; String imageType = options.outMimeType;
/** * 获取合适的inSampleSize * @param options * @param targetWidth 期望Width * @param targetHeight 期望Height * @return */ public static int getInSampleSize(BitmapFactory.Options options, int targetWidth, int targetHeight) { // 原始图片的高度和宽度 final int height = options.outHeight; final int width = options.outWidth; int inSampleSize = 1; if (height > targetHeight || width > targetWidth) { // 计算出实际宽高和目标宽高的比率 final int heightRate = Math.round((float) height / (float) targetHeight); final int widthRate = Math.round((float) width / (float) targetWidth); inSampleSize = heightRate < widthRate ? heightRate : widthRate; } return inSampleSize; }
方法非常简单,就是通过期望长宽来获取缩放的比例。下面我们就创建一个方法来获取缩放后的图像,这里为了演示,我们只创建从资源文件中获取图像的方法:
/** * 使用targetWidth、targetHeight来获取合适的inSampleSize * 并使用inSampleSize来缩放得到合适大小的图像 * @param res getResources() * @param resId id * @param targetWidth * @param targetHeight * @return */ public static Bitmap decodeSuitableBitmap(Resources res, int resId, int targetWidth, int targetHeight) { // 空手套白狼 final BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeResource(res, resId, options); // 计算合适的inSampleSize options.inSampleSize = getInSampleSize(options, targetWidth, targetHeight); // 加载到内存 options.inJustDecodeBounds = false; return BitmapFactory.decodeResource(res, resId, options); }
通过调用decodeSuitableBitmap这样一个方法,我们就可以非常简单的将图像进行压缩。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。