Searched refs:MAX_PIXEL_COUNT (Results 1 – 2 of 2) sorted by relevance
123 final int MAX_PIXEL_COUNT = 640000; // 400 x 1600 in decodeThumbnail() local124 if ((w / options.inSampleSize) * (h / options.inSampleSize) > MAX_PIXEL_COUNT) { in decodeThumbnail()126 FloatMath.sqrt((float) MAX_PIXEL_COUNT / (w * h))); in decodeThumbnail()
85 private static final int MAX_PIXEL_COUNT = 5 * 1000000; // 5M pixels field in CropImage566 if (outputX * outputY > MAX_PIXEL_COUNT) { in getCroppedImage()567 float scale = FloatMath.sqrt((float) MAX_PIXEL_COUNT / outputX / outputY); in getCroppedImage()