0

这是我处于纵向模式的相机活动。我正在旋转设备,相机也随之旋转。

相机

这是我的第二次Activity图像ImageView倒置显示,来自PictureCallback(). 我已经尝试过ExifInterface了,但它的返回方向为 0。

第二

4

2 回答 2

0

相机设置:

public static void setCameraDisplayOrientation(Activity activity,
            int cameraId, android.hardware.Camera camera) {
        try {

            android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
            android.hardware.Camera.getCameraInfo(cameraId, info);
            int rotation = activity.getWindowManager().getDefaultDisplay()
                    .getRotation();
            int degrees = 0;
            switch (rotation) {
            case Surface.ROTATION_0:
                degrees = 0;
                break;
            case Surface.ROTATION_90:
                degrees = 90;
                break;
            case Surface.ROTATION_180:
                degrees = 180;
                break;
            case Surface.ROTATION_270:
                degrees = 270;
                break;
            }

            int result;
            if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
                result = (info.orientation + degrees) % 360;
                result = (360 - result) % 360; // compensate the mirror
            } else { // back-facing
                result = (info.orientation - degrees + 360) % 360;
            }
            camera.setDisplayOrientation(result);
        } catch (Exception e) {
            // TODO: handle exception
        }
    }

并在显示结果时使用 ExifInterface

于 2014-04-24T08:43:29.847 回答
0

我有一个类似的问题。ExifInterface 中的方向 0 表示未定义。如果发生这种情况,我会询问 MediaStore,在我的情况下,如果 ExifInterface 返回 0,它总是会返回正确的方向。

String[] cols = { MediaStore.Images.Media.ORIENTATION };
Cursor cur = context.getContentResolver().query(uri, cols, null, null, null);
int orientation = 0;

if (cur != null && cur.moveToFirst()) {
        orientation = cur.getInt(cur.getColumnIndex(MediaStore.Images.Media.ORIENTATION));
}
于 2013-08-30T07:40:51.910 回答