不使用ImageURI / ContentResolver旋转位图?

时间:2017-03-03 22:00:03

标签: android image bitmap rotation uri

我正在尝试调整Microsoft的projectOxford EmotionApi的图像自动旋转码。分析设备相机拍摄的每张图像的角度,然后旋转到正确的横向视图,以便通过情感API进行分析。

我的问题是:我如何调整下面的代码以将Bitmap作为参数?在这种情况下,我也完全迷失了内容解析器和ExitInterface的角色。任何帮助都很受欢迎。

private static int getImageRotationAngle(
        Uri imageUri, ContentResolver contentResolver) throws IOException {
    int angle = 0;
    Cursor cursor = contentResolver.query(imageUri,
            new String[] { MediaStore.Images.ImageColumns.ORIENTATION }, null, null, null);
    if (cursor != null) {
        if (cursor.getCount() == 1) {
            cursor.moveToFirst();
            angle = cursor.getInt(0);
        }
        cursor.close();
    } else {
        ExifInterface exif = new ExifInterface(imageUri.getPath());
        int orientation = exif.getAttributeInt(
                ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);

        switch (orientation) {
            case ExifInterface.ORIENTATION_ROTATE_270:
                angle = 270;
                break;
            case ExifInterface.ORIENTATION_ROTATE_180:
                angle = 180;
                break;
            case ExifInterface.ORIENTATION_ROTATE_90:
                angle = 90;
                break;
            default:
                break;
        }
    }
    return angle;
}

// Rotate the original bitmap according to the given orientation angle
private static Bitmap rotateBitmap(Bitmap bitmap, int angle) {
    // If the rotate angle is 0, then return the original image, else return the rotated image
    if (angle != 0) {
        Matrix matrix = new Matrix();
        matrix.postRotate(angle);
        return Bitmap.createBitmap(
                bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
    } else {
        return bitmap;
    }
}

1 个答案:

答案 0 :(得分:0)

  

我如何调整下面的代码以将Bitmap作为参数?

你不能。

  

在这种情况下,我也完全迷失了内容解析器和ExitInterface的作用

您问题中的代码使用EXIF Orientation标记来确定应该应用于图像的方向,如拍摄照片的相机(或任何设置该标记)所报告的方向。 ExifInterface是读取EXIF标记的代码。 ExifInterface需要使用实际的JPEG数据,而不是解码的Bitmap - Bitmap不再使用EXIF标记。

其中的ContentResolver代码存在漏洞,不应使用。 ExifInterface库中的com.android.support:exifinterface有一个带InputStream的构造函数,它将从中读取JPEG。在此使用Uri的正确方法是将其传递给openInputStream()上的ContentResolver,并将该流传递给ExifInterface构造函数。