From ffaf11cbaeedc02812300fd1221ad154e37f857d Mon Sep 17 00:00:00 2001 From: Sascha Haeberling Date: Wed, 8 May 2013 14:00:42 -0700 Subject: Reduce max size of bitmap returned by crop dialog. Bug: 8851336 Change-Id: Id69c46c44b22ce753900c52e34944428a38d02c6 --- src/com/android/gallery3d/filtershow/crop/CropActivity.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/com') diff --git a/src/com/android/gallery3d/filtershow/crop/CropActivity.java b/src/com/android/gallery3d/filtershow/crop/CropActivity.java index 0558e4a7e..fcbf7bb50 100644 --- a/src/com/android/gallery3d/filtershow/crop/CropActivity.java +++ b/src/com/android/gallery3d/filtershow/crop/CropActivity.java @@ -73,7 +73,14 @@ public class CropActivity extends Activity { private static final int SELECT_PICTURE = 1; // request code for picker private static final int DEFAULT_COMPRESS_QUALITY = 90; - public static final int MAX_BMAP_IN_INTENT = 990000; + /** + * The maximum bitmap size we allow to be returned through the intent. + * Intents have a maximum of 1MB in total size. However, the Bitmap seems to + * have some overhead to hit so that we go way below the limit here to make + * sure the intent stays below 1MB.We should consider just returning a byte + * array instead of a Bitmap instance to avoid overhead. + */ + public static final int MAX_BMAP_IN_INTENT = 750000; // Flags private static final int DO_SET_WALLPAPER = 1; -- cgit v1.2.3