Android相机的方向,手机提供虚假数据?(Android Camera orientation,

2019-09-18 08:27发布

我使用的是从Android摄像头文档中的代码:

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

在纵向模式下我的手机(三星GT-S5660)的一个报告info.orientation为0和屏幕旋转0,这使得在横向模式下预览去。 在另一部手机(HTC)这工作像它应该。 HTC在这种情况下,报告info.orientation 90。 如果我手动设置的显示方向以90它适用于三星了。

所以,问题是:三星提供虚假信息或我做错了什么?

文章来源: Android Camera orientation, phone gives false data?