Searched defs:max_size (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropActivity.java629 protected static Bitmap getDownsampledBitmap(Bitmap image, int max_size) { argument
630 if (image == null || image.getWidth() == 0 || image.getHeight() == 0 || max_size < 16) {
635 while (size > max_size) {
645 if (CropMath.getBitmapSize(ret) > max_size) {

Completed in 60 milliseconds