summaryrefslogtreecommitdiffstats
path: root/gallerycommon/src/com
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2011-09-13 20:48:13 +0800
committerWei Huang <weih@google.com>2011-09-19 16:22:44 -0700
commit9ed28cc0b7108a95aebbc3fe59671e36149d2aa7 (patch)
tree7aa567aac48de03b9fd03d1d1de05cef8ac9f567 /gallerycommon/src/com
parent56e813b555f7723a033bbb84ffc2ac517d4c1a2d (diff)
downloadandroid_packages_apps_Snap-9ed28cc0b7108a95aebbc3fe59671e36149d2aa7.tar.gz
android_packages_apps_Snap-9ed28cc0b7108a95aebbc3fe59671e36149d2aa7.tar.bz2
android_packages_apps_Snap-9ed28cc0b7108a95aebbc3fe59671e36149d2aa7.zip
Add a hard limit on the size of the widget images.
There is a limit on the size of the data transfered by binder. For now, we just add a hard limit (360 pixel) to ensure the widget's image can be passed by binder. Also adjust the size of widget to make it looks better. Fix a bug in DecodeUtils which cause OOM for a image in size 12200x1920. In that case, we should generate a screen nail of size 640x101 instead of 4066x640. Change-Id: Ia8227d8e5368471fe7af94bf164d67017aa321fa fix: 5273271
Diffstat (limited to 'gallerycommon/src/com')
-rw-r--r--gallerycommon/src/com/android/gallery3d/common/BitmapUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gallerycommon/src/com/android/gallery3d/common/BitmapUtils.java b/gallerycommon/src/com/android/gallery3d/common/BitmapUtils.java
index aaf4f6665..060d7f32e 100644
--- a/gallerycommon/src/com/android/gallery3d/common/BitmapUtils.java
+++ b/gallerycommon/src/com/android/gallery3d/common/BitmapUtils.java
@@ -85,7 +85,7 @@ public class BitmapUtils {
// minSideLength long. If that's not possible, return 1.
public static int computeSampleSizeLarger(int w, int h,
int minSideLength) {
- int initialSize = Math.min(w / minSideLength, h / minSideLength);
+ int initialSize = Math.max(w / minSideLength, h / minSideLength);
if (initialSize <= 1) return 1;
return initialSize <= 8