如何在base64中使用ExifInterface

时间:2016-03-31 10:50:25

标签: android image-processing

我可以通过ExifInterface获取图像旋转

ExifInterface exif = new ExifInterface(filename);
orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, 1);

但它只接受文件路径

我的图片文件是base64字符串

如果我不想将图像写入磁盘,如何将ExifInterface与base64字符串一起使用?

1 个答案:

答案 0 :(得分:0)

ExifInterface不会处理Strings中的base64编码图像。或者base64编码的图像在文件中。它甚至不会处理放在字节数组中或可以从流中读取的图像文件。你运气不好。