Android 提供此代码以使所有相机和屏幕方向的相机预览正面朝上:
public static void setCameraDisplayOrientation(Activity activity,
int cameraId, android.hardware.Camera camera) {
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);
}
在最简单的情况下,当屏幕正面朝上纵向(rotation
为 0)并带有后置摄像头时,这会减少到result = info.orientation
. 根据文档, info.orientation 是
相机图像需要顺时针旋转的角度,以便它以自然方向正确显示在显示器上。它应该是 0、90、180 或 270。
这意味着info.orientation
应该是来自相机的原始图像逆时针旋转的量。
在三星 Galaxy S II 的后置摄像头上,info.orientation
为 90,与后置摄像头的预期一致。但是,原始相机预览会顺时针旋转 90 度,而不是逆时针旋转。这意味着应用上述代码后,预览出现倒置(180 度)。
为什么相机报告的方向与其原始图像的实际方向之间存在 180 度的差异?
这个确切的问题 - 当报告 90 时,相机图像顺时针旋转 90 度- 在这个问题和这个info.orientation
问题中也有报道。
另请参阅这个可能相关的问题。