拍摄肖像时,Android相机意图保存图像风景

时间:2012-10-17 11:16:08

标签: android android-intent android-camera android-camera-intent

我已经浏览了一下,但似乎没有一个可靠的答案/解决方案,非常恼人的问题。

我以纵向拍摄照片,当我点击保存/放弃时,按钮的方向也正确。问题是,当我稍后检索图像时,它是横向的(图片已逆时针旋转90度)

我不想强迫用户以某种方向使用相机。

有没有办法可以检测照片是以纵向模式拍摄然后解码位图并以正确的方式翻转?

2 个答案:

答案 0 :(得分:86)

照片始终以相机内置于设备的方向拍摄。要使图像正确旋转,您必须阅读存储在图片中的方向信息(EXIF元数据)。在那里存储了图像拍摄时设备的方向。

以下是一些读取EXIF数据并相应旋转图像的代码: file是图像文件的名称。

BitmapFactory.Options bounds = new BitmapFactory.Options();
bounds.inJustDecodeBounds = true;
BitmapFactory.decodeFile(file, bounds);

BitmapFactory.Options opts = new BitmapFactory.Options();
Bitmap bm = BitmapFactory.decodeFile(file, opts);
ExifInterface exif = new ExifInterface(file);
String orientString = exif.getAttribute(ExifInterface.TAG_ORIENTATION);
int orientation = orientString != null ? Integer.parseInt(orientString) :  ExifInterface.ORIENTATION_NORMAL;

int rotationAngle = 0;
if (orientation == ExifInterface.ORIENTATION_ROTATE_90) rotationAngle = 90;
if (orientation == ExifInterface.ORIENTATION_ROTATE_180) rotationAngle = 180;
if (orientation == ExifInterface.ORIENTATION_ROTATE_270) rotationAngle = 270;

Matrix matrix = new Matrix();
matrix.setRotate(rotationAngle, (float) bm.getWidth() / 2, (float) bm.getHeight() / 2);
Bitmap rotatedBitmap = Bitmap.createBitmap(bm, 0, 0, bounds.outWidth, bounds.outHeight, matrix, true);

更新2017-01-16

随着25.1.0支持库的发布,引入了ExifInterface支持库,这应该可以更容易地访问Exif属性。有关该文章的文章,请参阅Android Developer's Blog

答案 1 :(得分:1)

所选答案使用了对此问题和类似问题的最常见方法。然而,对于我来说,三星的前后摄像头都没有用。对于那些需要另一种适用于三星和其他主要制造商的前后摄像头解决方案的人来说,nvhausid的答案非常棒:

https://stackoverflow.com/a/18915443/6080472

对于那些不想点击的人来说,相关的魔法就是使用CameraInfo,而不是依靠EXIF或光标覆盖媒体文件。

Bitmap realImage = BitmapFactory.decodeByteArray(data, 0, data.length);
android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
android.hardware.Camera.getCameraInfo(mCurrentCameraId, info);
Bitmap bitmap = rotate(realImage, info.orientation);

链接中的完整代码。