Android提供this code以使相机预览面朝上显示所有相机和屏幕方向:
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度差异?
this question和this one也报告了这个确切的问题 - info.orientation
报告90时顺时针90度的相机图像。