gpt4 book ai didi

android前后摄像头捕获的图片方向问题,以错误的方式旋转

转载 作者:IT老高 更新时间:2023-10-28 23:23:20 35 4
gpt4 key购买 nike

我有一个纵向模式的相机应用程序,它从前端和后端相机拍摄照片。问题就像捕获的图像以错误的方式旋转......

为了预览,我使用了以下代码....

    Camera.Parameters parameters = camera.getParameters();
android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
android.hardware.Camera.getCameraInfo(defaultCameraId, info);
int rotation = this.getWindowManager().getDefaultDisplay()
.getRotation();
if (Integer.parseInt(Build.VERSION.SDK) >= 8) {

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);

} else {
parameters.set("orientation", "portrait");
}

camera.setParameters(parameters);

但是捕获的图像以错误的方式旋转。我还尝试使用 matrix.postRotate(bitmap) 旋转捕获的图像。这在诸如 nexus 之类的某些设备中也不起作用。 .我也试过EXIF。但这里我有url而不是文件路径。那也不好用。谁能帮帮我?

最佳答案

你可以引用下面的代码。

ExifInterface exif = new ExifInterface(SourceFileName);     //Since API Level 5

String exifOrientation = exif.getAttribute(ExifInterface.TAG_ORIENTATION);

另请参阅此链接 https://stackoverflow.com/a/6124375/1441666

关于android前后摄像头捕获的图片方向问题,以错误的方式旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13062769/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com