Android 解决Camera在预览界面成像角度问题

本文最后更新于:2023年11月9日 晚上

Android 解决Camera在预览界面成像角度问题

1
setCameraDisplayOrientation(mContext, CameraId, mCamera);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
public static void setCameraDisplayOrientation(Context context,
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) context).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);
}
只有当不幸真的到来时,我们才会怀念和渴望那些逝去的美好时光。

Android 解决Camera在预览界面成像角度问题
http://example.com/2023/09/16/Android 解决Camera在预览界面成像角度问题/
作者
阿波~
发布于
2023年9月16日
更新于
2023年11月9日
许可协议