diff options
Diffstat (limited to 'src/com/android/camera/gallery/IImage.java')
-rw-r--r-- | src/com/android/camera/gallery/IImage.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/com/android/camera/gallery/IImage.java b/src/com/android/camera/gallery/IImage.java index 7217926..63db330 100644 --- a/src/com/android/camera/gallery/IImage.java +++ b/src/com/android/camera/gallery/IImage.java @@ -34,6 +34,12 @@ public interface IImage { /** Get the bitmap for the full size image. */ public abstract Bitmap fullSizeBitmap(int targetWidthOrHeight); + public abstract Bitmap fullSizeBitmap(int targetWidthOrHeight, + boolean rotateAsNeeded, boolean useNative); + public static final boolean ROTATE_AS_NEEDED = true; + public static final boolean NO_ROTATE = false; + public static final boolean USE_NATIVE = true; + public static final boolean NO_NATIVE = false; /** Get the cancelable object for the bitmap of the full size image. */ public abstract Cancelable<Bitmap> fullSizeBitmapCancelable( |