Android Bitmap Size Get computeInitialSampleSize( BitmapFactory.Options options, int minSideLength, int maxNumOfPixels)

Here you can find the source of computeInitialSampleSize( BitmapFactory.Options options, int minSideLength, int maxNumOfPixels)

Description

compute Initial Sample Size

Declaration

private static int computeInitialSampleSize(
            BitmapFactory.Options options, int minSideLength,
            int maxNumOfPixels) 

Method Source Code

//package com.java2s;

import android.graphics.BitmapFactory;

public class Main {
    private static final int UNCONSTRAINED = -1;

    private static int computeInitialSampleSize(
            BitmapFactory.Options options, int minSideLength,
            int maxNumOfPixels) {
        double w = options.outWidth;
        double h = options.outHeight;
        int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 : (int) Math
                .ceil(Math.sqrt(w * h / maxNumOfPixels));
        int upperBound = (minSideLength == UNCONSTRAINED) ? 128
                : (int) Math.min(Math.floor(w / minSideLength),
                        Math.floor(h / minSideLength));
        if (upperBound < lowerBound) {
            // return the larger one when there is no overlapping zone.
            return lowerBound;
        }/*from ww w. j  ava 2 s.c om*/
        if ((maxNumOfPixels == UNCONSTRAINED)
                && (minSideLength == UNCONSTRAINED)) {
            return 1;
        } else if (minSideLength == UNCONSTRAINED) {
            return lowerBound;
        } else {
            return upperBound;
        }
    }
}

Related

  1. computeSampleSizeLarger(int w, int h, int minSideLength)
  2. computeSampleSizeLarger(float scale)
  3. getBitmapSize(Bitmap bitmap)
  4. calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight)
  5. calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight)
  6. computeSampleSize(BitmapFactory.Options options, int minSideLength, int maxNumOfPixels)
  7. getBitmapSize(Bitmap bitmap)
  8. getBitmapSize(String strImagePath)
  9. getBitmapSize(String strImagePath, boolean checkOrientation)