答案 0 :(得分:1)
您无法使用android api从Stream中读取exif数据。 ExifInterface没有带有InputStream的构造函数。
但是,您可以使用metadata-extractor 并使用带有InputStream的构造函数使用ByteArrayInputStream构建由byte []支持的InputStream
答案 1 :(得分:0)
Android API不会从Stream
读取EXIF。
答案 2 :(得分:0)
现在可以通过ExifInterface支持库从流中读取EXIF数据。
compile "com.android.support:exifinterface:25.1.0"
来源:https://android-developers.googleblog.com/2016/12/introducing-the-exifinterface-support-library.html