关于如何从URI

时间:2016-01-09 17:43:42

标签: android android-intent uri exif android-contentresolver

此主题已经在很多问题中进行了讨论,结果大多不同,并且由于API更改和不同类型的URI,没有明确的答案

我自己没有答案,但让我们谈谈它。 ExifInterface有一个接受filePath的构造函数。这本身很烦人,因为现在不鼓励依赖路径 - 你应该使用UriContentResolver。行。

我们Uri名为uri的{​​{1}}可以从onActivityResult中的意图中检索到(如果您从带有ACTION_GET_CONTENT的图库中选择图片),或者可以是Uri我们以前有过(如果您从相机中选择图片并拨打intent.putExtra(MediaStore.EXTRA_OUTPUT, uri))。

API< 19

我们的uri可以有两种不同的模式:

  • 来自相机的Uris大多数都有file://架构。那些很容易治疗,因为他们坚持这条道路。你可以致电new ExifInterface(uri.getPath()),但你已经完成了。
  • 来自图库或其他内容提供商的Uris通常具有content://界面。我个人不知道那是什么,但让我发疯。

据我了解,第二种情况应该使用ContentResolver来处理Context.getContentResolver()。对于我测试过的所有应用,以下有效,无论如何:

public static ExifInterface getPictureData(Context context, Uri uri) {
    String[] uriParts = uri.toString().split(":");
    String path = null;

    if (uriParts[0].equals("content")) {
        // we can use ContentResolver.
        // let’s query the DATA column which holds the path
        String col = MediaStore.Images.ImageColumns.DATA;
        Cursor c = context.getContentResolver().query(uri,
                new String[]{col},
                null, null, null);

        if (c != null && c.moveToFirst()) {
            path = c.getString(c.getColumnIndex(col));
            c.close();
            return new ExifInterface(path);
        }

    } else if (uriParts[0].equals("file")) {
        // it's easy to get the path
        path = uri.getEncodedPath();
        return new ExifInterface(path);
    }
    return null;
}

API19 +

我的问题来自Kitkat以及content:// URI。 Kitkat介绍了Storage Access Framework(请参阅here)以及新意图ACTION_OPEN_DOCUMENT和平台选择器。但是,据说

  

在Android 4.4及更高版本中,您可以选择使用   ACTION_OPEN_DOCUMENT intent,显示由...控制的选择器UI   允许用户浏览其他应用程序的所有文件的系统   已经提供。从这个单一UI,用户可以选择一个文件   来自任何受支持的应用程序。

     

ACTION_OPEN_DOCUMENT并非旨在替代   ACTION_GET_CONTENT。你应该使用的那个取决于需要   你的应用。

所以为了保持这个非常简单,让我们说我们对旧的ACTION_GET_CONTENT没问题:它会触发一个选择器对话框,您可以在其中选择一个图库应用程序。

然而,内容方法不再适用。有时它可以在Kitkat上运行,但是在Lollipop上永远无法正常工作。我不知道究竟发生了什么变化。

我已经搜索并尝试了很多;特别是Kitkat采取的另一种方法是:

String wholeId = DocumentsContract.getDocumentId(uri);
String[] parts = wholeId.split(“:”);
String numberId = parts[1];

Cursor c = context.getContentResolver().query(
    // why external and not internal ?
    MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
    new String[]{ col },
    MediaStore.Images.Media._ID + “=?”,
    new String[]{ numberId },
    null);

这有时会奏效,但有些则不行。具体来说,当wholeId类似于image:2839时,它会起作用,但当wholeId只是一个数字时,它会明显中断。

您可以使用系统选择器尝试此操作(即使用ACTION_OPEN_DOCUMENT触发图库):如果您选择“最近”中的图像,则可以使用;如果您从“下载”中选择一张图片,它就会中断。

那怎么样?!

直接答案是您没有,您在较新版本的操作系统中找不到内容uris的文件路径。可以说并非所有内容都指向图片甚至文件。

这对我来说完全没问题,起初我努力避免这种情况。但是,如果我们不应该使用路径,我们应该如何使用ExifInterface类?

我不明白现代应用程序是如何做到的 - 查找方向和元数据是您立即面临的问题,ContentResolver在这个意义上不提供任何API。你有ContentResolver.openFileDescriptor()和类似的东西,但没有API来读取元数据(真正在该文件中)。可能有外部库从流中读取Exif内容,但我想知道解决此问题的通用/平台方法。

我在谷歌的开源应用程序中搜索过类似的代码,但一无所获。

5 个答案:

答案 0 :(得分:40)

使用一些示例代码扩展alex.dorokhov的答案。支持库是一个很好的方法。

的build.gradle

dependencies {
...    
compile "com.android.support:exifinterface:25.0.1"
...
}

示例代码:

import android.support.media.ExifInterface;
...
try (InputStream inputStream = context.getContentResolver().openInputStream(uri)) {
      ExifInterface exif = new ExifInterface(inputStream);
      int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
    } catch (IOException e) {
      e.printStackTrace();
    }

一旦我们开始瞄准api 25(可能是24+上的问题),但仍然支持回到api 19,我必须这样做,因为在Android 7我们的应用程序会崩溃,如果我传入一个URI到刚刚引用文件的相机。因此,我必须创建一个URI来传递给相机意图。

FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".fileprovider", tempFile);

问题在于该文件无法将URI转换为真正的文件路径(除了保留临时文件路径)。

答案 1 :(得分:10)

现在,支持库中提供了从内容URI(实际上是一个InputStream)获取EXIF。 请参阅:https://android-developers.googleblog.com/2016/12/introducing-the-exifinterface-support-library.html

答案 2 :(得分:9)

  

以下内容适用于我测试的所有应用,无论如何:

仅当Uri恰好来自MediaStore时才会有效。如果Uri碰巧来自其他任何东西,它将失败。

  

直接答案是你没有,你没有在较新版本的操作系统中找到内容uris的文件路径。可以说并非所有内容都指向图片甚至文件。

正确。我已多次指出这一点,例如here

  

如果我们不应该使用路径,我们应该如何使用ExifInterface类?

你没有。使用其他代码获取EXIF标头。

  

可能有外部库从流中读取Exif内容,但我想知道解决此问题的常用/平台方法。

使用外部库。

  

我在谷歌的开源应用程序中搜索过类似的代码,但一无所获。

你会在the Mms app找到一些。

答案 3 :(得分:0)

不要使用EXIF。您可以像这样从Uri获取图像方向:

private static int getOrientation(Context context, Uri photoUri) {
    Cursor cursor = context.getContentResolver().query(photoUri,
            new String[]{MediaStore.Images.ImageColumns.ORIENTATION}, null, null, null);

    if (cursor.getCount() != 1) {
        cursor.close();
        return -1;
    }

    cursor.moveToFirst();
    int orientation = cursor.getInt(0);
    cursor.close();
    cursor = null;
    //orientation here can be 90, 180, 270!
}

答案 4 :(得分:0)

Android 10 API 30

从图片 URI 中获取 Exif 数据

 public static Bitmap decodeBitmap( Context context, Uri imagePath) {
    Logger.d("decodeBitmap imagePath: " + imagePath.getPath());

    if (imagePath == null) {
        return null;
    }

    InputStream in;
    ExifInterface exif;
    Bitmap image = null;
    try {
        in = context.getContentResolver().openInputStream(imagePath);
        image = BitmapFactory.decodeStream(in);

        //Close input stream consumed for Bitmap decode
        in.close();

        // Open stream again for reading exif information for acquiring orientation details.
        // Use new input stream otherwise bitmap decode stream gets reset.
        in =  context.getContentResolver().openInputStream(imagePath);

        int orientation = ExifInterface.ORIENTATION_UNDEFINED;
        try {
            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
                exif = new ExifInterface(in);
            }else{
                exif = new ExifInterface(imagePath.getPath());
            }
            orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);

        } catch (IOException e) {
            Logger.d("IOException: " + e.getMessage());
        }

        //if you need, can correct orientation issues for gallery pick camera images with following.
        Logger.d("decodeBitmap orientation: " + orientation);
        switch (orientation) {
            case ExifInterface.ORIENTATION_ROTATE_90:
            case ExifInterface.ORIENTATION_TRANSPOSE:
                image = rotateImage(image, ROTATE_90);
                break;
            case ExifInterface.ORIENTATION_ROTATE_180:
            case ExifInterface.ORIENTATION_FLIP_VERTICAL:
                image = rotateImage(image, ROTATE_180);
                break;
            case ExifInterface.ORIENTATION_ROTATE_270:
            case ExifInterface.ORIENTATION_TRANSVERSE:
                image = rotateImage(image, ROTATE_270);
                break;
            default:
                break;
        }
        in.close();
    }  catch (IOException e) {
        Logger.d("IOException", e.getMessage());
    }
     return image;
}