Android Bitmap Decode decodeSampledBitmapFromFile(String file, int reqWidth, int reqHeight)

Here you can find the source of decodeSampledBitmapFromFile(String file, int reqWidth, int reqHeight)

Description

decode Sampled Bitmap From File

Declaration

public static Bitmap decodeSampledBitmapFromFile(String file,
            int reqWidth, int reqHeight) 

Method Source Code

//package com.java2s;

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;

public class Main {
    public static Bitmap decodeSampledBitmapFromFile(String file,
            int reqWidth, int reqHeight) {

        // First decode with inJustDecodeBounds=true to check dimensions
        final BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(file, options);

        // Calculate inSampleSize
        options.inSampleSize = calculateInSampleSize(options, reqWidth,
                reqHeight);// w w w .ja  v  a 2  s .co m

        // Decode bitmap with inSampleSize set
        options.inJustDecodeBounds = false;
        return BitmapFactory.decodeFile(file, options);
    }

    public static int calculateInSampleSize(BitmapFactory.Options options,
            int reqWidth, int reqHeight) {
        // Raw height and width of image
        final int height = options.outHeight;
        final int width = options.outWidth;
        int inSampleSize = 1;

        if (height > reqHeight || width > reqWidth) {

            // Calculate ratios of height and width to requested height and
            // width
            final int heightRatio = Math.round((float) height
                    / (float) reqHeight);
            final int widthRatio = Math.round((float) width
                    / (float) reqWidth);

            // Choose the smallest ratio as inSampleSize value, this will
            // guarantee
            // a final image with both dimensions larger than or equal to the
            // requested height and width.
            inSampleSize = heightRatio < widthRatio ? heightRatio
                    : widthRatio;
        }

        return inSampleSize;
    }
}

Related

  1. decodeSampledBitmapFromFile(String filename, int reqWidth, int reqHeight)
  2. decodeSampledBitmap(Uri uri, int reqWidth, int reqHeight, Activity act)
  3. decodeBitmapFromAssets(Context context, String fileName)
  4. decodeImageFile(String strImagePath, BitmapFactory.Options options, boolean checkOrientation)
  5. decodeSampledBitmapFromByte(byte[] res, int reqWidth, int reqHeight)
  6. decodeSampledBitmapFromResource(Resources res, int resId, int reqWidth, int reqHeight)