我的Android应用程序通过http请求接收多个图像,我使用以下方法解码:
BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length);
主要问题是当我传递具有xmp数据的jpg图像的字节数组时,decodeByteArray()方法返回null。我的计算机中有一个图像副本,当用notepad ++打开时,会显示以下信息:
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00">
...
</x:xmpmeta>
...(remaining unreadable bytes)
有没有其他方法可以将xmp的图像字节数组转换为位图?
提前致谢。