我正在尝试使用前置摄像头开发相机应用程序。我的前置摄像头预览是正确的但是当我捕获图像时它保存为预览的镜像。如何在不使用位图的矩阵变换的情况下修复镜像效果? / p>
我尝试了开发者网站的代码,如下所示
public static void setCameraDisplayOrientation(android.hardware.Camera camera) {
android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
android.hardware.Camera.getCameraInfo(defaultCameraId, 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);
}
但它不适合我。我该怎么做才能解决这个问题?
答案 0 :(得分:0)
前置摄像头是标准镜像。您的预览会自动将其镜像恢复正常。但是当您拍摄图像或视频时,您可以直接从相机获取帧/图像。所以你必须使用矩阵来反映它。