summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/CaptureModule.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/camera/CaptureModule.java')
-rwxr-xr-xsrc/com/android/camera/CaptureModule.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/camera/CaptureModule.java b/src/com/android/camera/CaptureModule.java
index 7bfee3041..0240607af 100755
--- a/src/com/android/camera/CaptureModule.java
+++ b/src/com/android/camera/CaptureModule.java
@@ -2438,7 +2438,7 @@ public class CaptureModule implements CameraModule, PhotoController,
}
} else {
mActivity.getMediaSaveService().addImage(bytes, title, date,
- null, image.getWidth(), image.getHeight(), orientation, null,
+ null, image.getWidth(), image.getHeight(), orientation, exif,
mOnMediaSavedListener, mContentResolver, "jpeg");
if (mLongshotActive) {
@@ -2765,6 +2765,7 @@ public class CaptureModule implements CameraModule, PhotoController,
} else {
Log.d(TAG, "no location - getRecordLocation: " + getRecordLocation());
}
+
builder.set(CaptureRequest.JPEG_ORIENTATION, CameraUtil.getJpegRotation(id, mOrientation));
builder.set(CaptureRequest.JPEG_THUMBNAIL_SIZE, mPictureThumbSize);
builder.set(CaptureRequest.JPEG_THUMBNAIL_QUALITY, (byte)80);