Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这段代码给出了运行时异常,我无法捕捉到它。BitmapFactory.decodeByteArray 不返回 null 或类似的东西。
Bitmap bitmap = BitmapFactory.decodeByteArray(imbBytes, 0, imbBytes.length);
注意:当 imbBytes 是 .png 的 byte[] 时会出错,当 .JPG 没有时。我尝试将 png 图像保存在目录中以检查 byte[] 是否正确并且一切正常。
请帮忙!!!
从文档中:
返回解码的位图,如果图像无法解码,则返回 null。