17

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

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

    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而不是filepath。那也不行。谁能帮我 ?

4

5 回答 5

7

你可以参考下面的代码。

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

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

并参考此链接https://stackoverflow.com/a/6124375/1441666

于 2012-10-25T12:29:51.773 回答
4

您可以使用它从Uri

                    String filePath = mImageUri.getPath();
                if (filePath != null) {
                    rotation = -1;
                        ExifInterface exif = new ExifInterface(filePath); // Since
                                                                            // API
                                                                            // Level
                                                                            // 5
                        rotation = Integer.parseInt(exif.getAttribute(ExifInterface.TAG_ORIENTATION));
                        // //Log.v("roation",
                        // exif.getAttribute(ExifInterface.TAG_ORIENTATION));
                    }

                }
            } catch (Exception e) {
                Toast.makeText(getApplicationContext(), "Internal error", Toast.LENGTH_LONG).show();
                Log.e(e.getClass().getName(), e.getMessage(), e);
            }

并且作为音符旋转 '3 = 180, 6 = 90, 8 = 270'

于 2012-11-04T16:34:12.450 回答
3

我为此使用以下代码:

ExifInterface exif = new ExifInterface(getUriPath(uri));
int orientation = exif.getAttributeInt(
                ExifInterface.TAG_ORIENTATION,
                ExifInterface.ORIENTATION_NORMAL);

获取路径:

public String getUriPath(Uri uri) {
    String[] projection = { MediaStore.Images.Media.DATA };
    Cursor cursor = getContentResolver().query(uri, projection, null, null,
            null);
    if (cursor != null) {
        int column_index = cursor.getColumnIndexOrThrow(projection[0]);
        cursor.moveToFirst();
        String filePath = cursor.getString(column_index);
        cursor.close();
        return filePath;
    } else
        return null;
}
于 2012-11-03T17:49:48.967 回答
3

试试这个代码片段

try {

    ExifInterface exif = new ExifInterface(filePath);
    orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, 1);
    //Toast.makeText(getApplicationContext(), ""+orientation, 1).show();
    Log.v("log", "ort is "+orientation);

    } catch (IOException e)
    {
        e.printStackTrace();
    }

然后根据你得到的方向旋转矩阵

if (orientation==6)
{
    Matrix matrix = new Matrix();
    matrix.postRotate(90);
    bmp = Bitmap.createBitmap(bmp, 0, 0, bmp.getWidth(), bmp.getHeight(), matrix, true);
}
else if (orientation==8)
{
    Matrix matrix = new Matrix();
    matrix.postRotate(270);
    bmp = Bitmap.createBitmap(bmp, 0, 0, bmp.getWidth(), bmp.getHeight(), matrix, true);
}

else if (orientation==3)
{
    Matrix matrix = new Matrix();
    matrix.postRotate(180);
    bmp = Bitmap.createBitmap(bmp, 0, 0, bmp.getWidth(), bmp.getHeight(), matrix, true;
}
于 2012-11-05T07:39:03.890 回答
0

选定的答案只是给出了可能已保存在 EXIF 标头中的可能旋转。在某些情况下,相机未在 EXIFHeader 中设置“ExifInterface.TAG_ORIENTATION”属性,因此它将为 0(ExifInterface.ORIENTATION_UNDEFINED)。如果设置了事件,则在拍摄照片时仅在一种情况/方向上为真。您必须使用 setRotation() 方法在相机参数中手动设置旋转。setRotation() 的文档非常清晰,还解释了如何在考虑设备旋转和相机传感器方向(通常是横向)的情况下计算旋转。

所以检查 setRotation() 方法。这就是你需要改变的。

于 2014-03-28T10:44:34.763 回答