我在收到用户时遇到问题'挑选图像,然后确定是否需要旋转。我以为我会很聪明,让我的所有处理都在Uris上进行操作,以便不知道图像来自何处,但我看到的用于确定旋转的方法似乎需要Exif信息,而这些信息并不适用于内容:// Uri的类型。
问题:如果我的句柄是Uri,我怎么能确定图像是否需要旋转,而你不确定该图像来自哪里?
我这样做是为了获得一张图片:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(intent, INTENT_IMAGE_LOAD);
...并且在onActivityResult()中我收到了Uri供以后处理。
Uri imageUri = data.getData();
// if the imageUri needs rotation, then fix it here (I know how to fix it).
// ... but I think I need to use Exif data which I can't get from Content:// URI
// hmmmmmmmm
doMyProcessingOnUri(context, imageUri);
显然Android 7.0已经改变了使用这样的Intent的某些方面,我认为这方面的大部分帮助都与7.0之前的版本有关。
答案 0 :(得分:5)
根据Introducing the ExifInterface Support Library:
对于从其他应用程序接收带有content:// URI的图像的应用程序(例如由目标API 24或更高版本的应用程序发送的应用程序),ExifInterface现在可直接使用InputStream;这使您可以直接从内容中轻松提取Exif信息://您收到的URI,而无需创建临时文件。
他们继续展示如何提取轮换信息:
InputStream in = getContentResolver().openInputStream(uri);
ExifInterface exifInterface = new ExifInterface(in);
int rotation = 0;
int orientation = exifInterface.getAttributeInt(
ExifInterface.TAG_ORIENTATION,
ExifInterface.ORIENTATION_NORMAL);
switch (orientation) {
case ExifInterface.ORIENTATION_ROTATE_90:
rotation = 90;
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotation = 180;
break;
case ExifInterface.ORIENTATION_ROTATE_270:
rotation = 270;
break;
}
您可以使用以下Gradle导入包含ExifInterface支持库:
compile "com.android.support:exifinterface:26.0.1"