如果选择了设备的主内存,我需要从documentfile或uri中获取一个格式正确的文件,而不是使用content://com.android.externalstorage.documents/tree/primary:的文件。
要获取映像的文件或绝对路径,我需要具有file:///storage/emulated/0或storage/emulated/0的映像,但我找不到方法获取用于生成文件的正确uri,以便将exif数据写入映像。
我的设想是:
用户选择保存图像的路径,该路径返回带有content://com.android.externalstorage.documentsonActivityResult()的uri。我用treeUri.toString()将此路径保存到sharedpreferences以供以后使用。
用户拍摄照片并使用DocumentFile.fromTreeUri(MainActivity.this, Uri.parse(uriString));保存图像
在我失败的地方,得到一个正确指向图像的文件,Uri的内容://不返回现有的图像。Correct Uri应该file:///storage/emulated/,并且我可以使用File filePath = new File(URI.create(saveDir.getUri().toString()));将这个URI转换成文件。
如何使用从saf ui获得的uri获取构建文件或文件所需的uri?
编辑:ExifInterface Support Library是为android 7.1+引入的,它可以使用inputstream或filedescriptor。

Uri uri; // the URI you've received from the other app
InputStream in;
try {
  in = getContentResolver().openInputStream(uri);
  ExifInterface exifInterface = new ExifInterface(in);
  // Now you can extract any Exif tag you want
  // Assuming the image is a JPEG or supported raw format
} catch (IOException e) {
  // Handle any errors
} finally {
  if (in != null) {
    try {
      in.close();
    } catch (IOException ignored) {}
  }
}

注意:ExifInterface将无法处理远程输入流,例如从HTTurpLink返回的那些。强烈建议仅将它们与content:/或file://uri一起使用。
上面的代码片段显然是在读取数据,因为它打开了一个inputstream来读取数据。我需要能够写exif数据到jpeg文件。

最佳答案

如果API为24或以上,则使用“cc>”,将EXIF数据写入以前保存的图像和已知内容URI。

private void writeEXIFWithFileDescriptor(Uri uri) {

    if (Build.VERSION.SDK_INT < 24) {
        showToast("writeEXIFWithInputStream() API LOWER 24", Toast.LENGTH_SHORT);
        return;
    }

    ParcelFileDescriptor parcelFileDescriptor = null;
    try {

        parcelFileDescriptor = mContext.getContentResolver().openFileDescriptor(uri, "rw");
        FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
        showToast("writeEXIFWithFileDescriptor(): " + fileDescriptor.toString(), Toast.LENGTH_LONG);
        ExifInterface exifInterface = new ExifInterface(fileDescriptor);
        // TODO Create  Exif Tags class to save Exif data
        exifInterface.saveAttributes();

    } catch (FileNotFoundException e) {
        showToast("File Not Found " + e.getMessage(), Toast.LENGTH_LONG);

    } catch (IOException e) {
        // Handle any errors
        e.printStackTrace();
        showToast("IOEXception " + e.getMessage(), Toast.LENGTH_LONG);
    } finally {
        if (parcelFileDescriptor != null) {
            try {
                parcelFileDescriptor.close();
            } catch (IOException ignored) {
                ignored.printStackTrace();
            }
        }
    }
}

如果API小于24,则必须使用缓冲文件,并将该缓冲文件保存到实际位置,在写入ExExF数据之后,使用FileDescriptor
private boolean exportImageWithEXIF(Bitmap bitmap, DocumentFile documentFile) {
        OutputStream outputStream = null;
        File bufFile = new File(Environment.getExternalStorageDirectory(), "buffer.jpg");
        long freeSpace = Environment.getExternalStorageDirectory().getFreeSpace() / 1048576;
        double bitmapSize = bitmap.getAllocationByteCount() / 1048576d;

        showToast("exportImageWithEXIF() freeSpace " + freeSpace, Toast.LENGTH_LONG);
        showToast("exportImageWithEXIF() bitmap size " + bitmapSize, Toast.LENGTH_LONG);
        try {
            outputStream = new FileOutputStream(bufFile);
            // Compress image from bitmap with JPEG extension
            if (mCameraSettings.getImageFormat().equals(Constants.IMAGE_FORMAT_JPEG)) {
                isImageSaved = bitmap.compress(CompressFormat.JPEG, mCameraSettings.getImageQuality(), outputStream);
                showToast("isImageSaved: " + isImageSaved, Toast.LENGTH_SHORT);
            }

            if (isImageSaved) {
                writeEXIFWithFile(bufFile);
            }

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } finally {
            if (outputStream != null) {
                try {
                    outputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        OutputStream os = null;
        InputStream is = null;
        try {
            int len;
            byte[] buf = new byte[4096];

            os = mContext.getContentResolver().openOutputStream(documentFile.getUri());
            is = new FileInputStream(bufFile);

            while ((len = is.read(buf)) > 0) {
                os.write(buf, 0, len);
            }

            os.close();
            is.close();

            if (bufFile != null) {
                bufFile.delete();
                bufFile = null;
            }

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

        return isImageSaved;
    }

这两种方法都可以用来将ExIF数据写入保存到设备的存储器或SD卡中的图像。您还可以使用存储访问框架中的有效uri将图像保存到sd卡。
我还找到了一种从内容uri中获取内存和sd卡绝对路径的方法,但这与问题无关,鼓励使用uri而不是绝对路径,不会导致未注意到的错误,我也无法将图像保存到具有绝对路径的sd卡,只能从中读取。

07-24 09:49
查看更多