这段代码给出了运行时异常,我无法捕获它。 BitmapFactory.decodeByteArray不返回null或类似的东西。

Bitmap bitmap = BitmapFactory.decodeByteArray(imbBytes, 0, imbBytes.length);


注意:当imbBytes为.png的byte []时给出错误,而.JPG为no。
我尝试将png图像保存在目录中,以检查byte []是否正确,并且一切正常。

请帮忙!!!

最佳答案

the documentation


返回解码的位图;如果无法解码图像,则返回null。

07-24 15:10