summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2012-10-17 14:54:54 -0700
committerJohn Hoford <hoford@google.com>2012-10-17 14:54:54 -0700
commit659432ae6323d21600dde816a831f63fd2210350 (patch)
tree4f8861249ccbd37f8823edca83d0fb8a8238077f
parent0c4d19852885760e7fcfafbc8305e3533af35316 (diff)
downloadandroid_packages_apps_Snap-659432ae6323d21600dde816a831f63fd2210350.tar.gz
android_packages_apps_Snap-659432ae6323d21600dde816a831f63fd2210350.tar.bz2
android_packages_apps_Snap-659432ae6323d21600dde816a831f63fd2210350.zip
fix rotating normal images
bug:7353416 Change-Id: I86875286ea81982bdb55e9df22e44827b521d257
-rw-r--r--src/com/android/gallery3d/filtershow/cache/ImageLoader.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/gallery3d/filtershow/cache/ImageLoader.java b/src/com/android/gallery3d/filtershow/cache/ImageLoader.java
index 049c4a201..6beaed603 100644
--- a/src/com/android/gallery3d/filtershow/cache/ImageLoader.java
+++ b/src/com/android/gallery3d/filtershow/cache/ImageLoader.java
@@ -75,7 +75,6 @@ public class ImageLoader {
public void loadBitmap(Uri uri,int size) {
mUri = uri;
mOrientation = getOrientation(uri);
-
mOriginalBitmapSmall = loadScaledBitmap(uri, 160);
if (mOriginalBitmapSmall == null) {
// Couldn't read the bitmap, let's exit
@@ -161,7 +160,6 @@ public class ImageLoader {
h = tmp;
}
switch(ori){
- case ORI_NORMAL:
case ORI_ROTATE_90:
matrix.setRotate(90,w/2f,h/2f);
break;
@@ -185,7 +183,9 @@ public class ImageLoader {
matrix.setRotate(270,w/2f,h/2f);
matrix.preScale(1, -1);
break;
+ case ORI_NORMAL:
default:
+ return bitmap;
}
return Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(),