18

我有这个以纵向模式运行的应用程序,作为一项活动的一部分,我有一个相机对象作为其中的片段运行。

我可以选择从前置摄像头切换到后置摄像头,并且在使用后置摄像头拍照时一切都很好。

但是,当我使用前置摄像头拍照时,它们会反转 180 度。现在我知道这可能与处于纵向模式的方向有关,但是将其置于横向模式只会扼杀我的应用程序的想法。

无论如何,这是否可以修复,以便拍摄的照片与您在预览中看到的照片相同?

        listener = new OrientationEventListener(this.getActivity(),SensorManager.SENSOR_DELAY_NORMAL){

        @Override
        public void onOrientationChanged(int orientation) {
            // TODO Auto-generated method stub
            if (orientation == ORIENTATION_UNKNOWN) return;
             android.hardware.Camera.CameraInfo info =
                    new android.hardware.Camera.CameraInfo();
             android.hardware.Camera.getCameraInfo(mCurrentCamera, info);
             orientation = (orientation + 45) / 90 * 90;
             int rotation = 0;
             if (info.facing == CameraInfo.CAMERA_FACING_FRONT) {
                 rotation = (info.orientation - orientation + 360) % 360;
             } else {  // back-facing camera
                 rotation = (info.orientation + orientation) % 360;
             }
             if (mCamera.getParameters() != null){
             Camera.Parameters mParameters = mCamera.getParameters();

             mParameters.setRotation(rotation);
             mCamera.setParameters(mParameters);
             }
        }

    };
    listener.enable();
    if (listener.canDetectOrientation())
        Log.d("Orientation Possible", "Orientation Possible");

问题是,在我尝试拍照后,这个东西崩溃了。此外,如果它仅在预览模式下运行一段时间,它会再次崩溃。我还应该补充一点,在另一种方法中我正在这样做。

   public void switchCamera(Camera camera) {
    setCamera(camera);
    try {
        camera.setPreviewDisplay(mHolder);
    } catch (IOException exception) {
        Log.e(TAG, "IOException caused by setPreviewDisplay()", exception);
    }
    Camera.Parameters parameters = camera.getParameters();
    parameters.setPreviewSize(mPreviewSize.width, mPreviewSize.height);

    requestLayout();


    try{
        camera.setParameters(parameters);
    }
    catch (RuntimeException ex){
        Log.d("Preview", "Failure to set proper parameters");
        //need to improve this method
        if (mSupportedPreviewSizes != null) {
            Camera.Size cs = mSupportedPreviewSizes.get(0);
            parameters.setPreviewSize(cs.width, cs.height);
            camera.setParameters(parameters);
            requestLayout();
            //int tempheight = mPreviewSize.height;
            //mPreviewSize.height = mPreviewSize.width;
            //mPreviewSize.width = tempheight;

        }
    }

当您在相机之间切换时调用此方法(反之亦然)。这会干扰方向事件侦听器吗?

另外,保存拍摄的照片时,这就是我所说的。在它只是将数据作为参数之前,但我试图让它也采用屏幕方向。问题是屏幕方向始终是 90,无论如何。所以位图将始终旋转 90 度(这对于使用后置摄像头拍照非常有用)但在使用前置摄像头拍摄时会反转它。可以在此功能中实施修复吗?

  public static Bitmap MakeSquare(byte[] data, int orientation) {
    int width;
    int height;
    // Rotate photo
    Matrix matrix = new Matrix();
    matrix.postRotate(orientation);
    // Convert ByteArray to Bitmap
    Bitmap bitPic = BitmapFactory.decodeByteArray(data, 0, data.length);
    width = bitPic.getWidth();
    height = bitPic.getHeight();


    // Create new Bitmap out of the old one
    Bitmap bitPicFinal = Bitmap.createBitmap(bitPic, 0, 0, width, height,matrix, true);
    bitPic.recycle();
    int desWidth;
    int desHeight;
    desWidth = bitPicFinal.getWidth();
    desHeight = desWidth;
    Bitmap croppedBitmap = Bitmap.createBitmap(bitPicFinal, 0,bitPicFinal.getHeight() / 2 - bitPicFinal.getWidth() / 2,desWidth, desHeight);
    croppedBitmap = Bitmap.createScaledBitmap(croppedBitmap, 528, 528, true);
    return croppedBitmap;
}
4

2 回答 2

35

好吧。看来我有点照顾它了。我使用了以下建议:Android,前后摄像头方向,风景

并将我的 MakeSquare 函数更改为:

public static Bitmap MakeSquare(byte[] data, int cameraID) {
    int width;
    int height;
    Matrix matrix = new Matrix();
    Camera.CameraInfo info = new Camera.CameraInfo();
    android.hardware.Camera.getCameraInfo(cameraID, info);
    // Convert ByteArray to Bitmap
    Bitmap bitPic = BitmapFactory.decodeByteArray(data, 0, data.length);
    width = bitPic.getWidth();
    height = bitPic.getHeight();

    // Perform matrix rotations/mirrors depending on camera that took the photo
    if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT)
    {
        float[] mirrorY = { -1, 0, 0, 0, 1, 0, 0, 0, 1};
        Matrix matrixMirrorY = new Matrix();
        matrixMirrorY.setValues(mirrorY);

        matrix.postConcat(matrixMirrorY);
    }

    matrix.postRotate(90);


    // Create new Bitmap out of the old one
    Bitmap bitPicFinal = Bitmap.createBitmap(bitPic, 0, 0, width, height,matrix, true);
    bitPic.recycle();
    int desWidth;
    int desHeight;
    desWidth = bitPicFinal.getWidth();
    desHeight = desWidth;
    Bitmap croppedBitmap = Bitmap.createBitmap(bitPicFinal, 0,bitPicFinal.getHeight() / 2 - bitPicFinal.getWidth() / 2,desWidth, desHeight);
    croppedBitmap = Bitmap.createScaledBitmap(croppedBitmap, 528, 528, true);
    return croppedBitmap;
}

这似乎有效并且可以解决问题。虽然我不确定这是最好的方法,但我很满意。现在我要做的就是弄清楚为什么在使用前置摄像头时它没有采用正确的纵横比。

于 2012-04-25T11:22:36.930 回答
2

试试这些链接:

http://developer.android.com/reference/android/hardware/Camera.html#setDisplayOrientation(int )

http://developer.android.com/reference/android/hardware/Camera.Parameters.html#setRotation(int )

具体来说,这里是来自 setRotation 链接的一大堆废话。

“如果应用程序想要旋转图片以匹配用户看到的方向,应用程序应该使用 OrientationEventListener 和 Camera.CameraInfo。OrientationEventListener 的值是相对于设备的自然方向的。CameraInfo.orientation 是相机方向和相机方向之间的角度自然设备方向。两者之和是后置摄像头的旋转角度。两者之差是前置摄像头的旋转角度。注意前置摄像头的JPEG图片不像预览那样镜像展示。”

我按原样使用此代码,根本没有修改它。我的相机现在好多了,不过仍然需要一些 TLC。我还没有前置功能。

祝你好运!

于 2012-04-23T15:37:58.283 回答