Here you can find the source of decodeSampledBitmapFromResource(Resources res, int id, int reqWidth, int reqHeight)
public static Bitmap decodeSampledBitmapFromResource(Resources res, int id, int reqWidth, int reqHeight)
//package com.java2s; import android.content.res.Resources; import android.graphics.Bitmap; import android.graphics.BitmapFactory; public class Main { public static Bitmap decodeSampledBitmapFromResource(Resources res, int id, int reqWidth, int reqHeight) { final BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeResource(res, id, options); options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);/*from w w w.j av a 2 s .co m*/ options.inJustDecodeBounds = false; return BitmapFactory.decodeResource(res, id, options); } public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) { final int height = options.outHeight; final int width = options.outWidth; int inSampleSize = 1; if (height > reqHeight || width > reqWidth) { final int heightRatio = Math.round((float) height / (float) reqHeight); final int widthRatio = Math.round((float) width / (float) reqWidth); inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio; } return inSampleSize; } }