我正在制作相机应用程序,因为我的图像保存方向不正确。 我设置
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
用于AndroidMainfest中的活动。 现在我正试图确定方向,它始终会保持90度。 我想使用screenOrientation = portrait获取移动方向。 如果我使用此代码进行定向:-
public int setPhotoOrientation(Activity activity, int cameraId) {
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;
// do something for phones running an SDK before lollipop
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;
}
return result;
}
答案 0 :(得分:0)
也许您未接听电话
camera.setDisplayOrientation(result);
确定度数并补偿前置摄像头后。
但这只会影响相机预览在屏幕上的显示方式。视频录制或预览回调仍以自然方向传递摄像机帧。