android – 将字节数组转换为图像

前端之家收集整理的这篇文章主要介绍了android – 将字节数组转换为图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将一个字节数组转换为一个图像,为此,我使用了代码
final BufferedImage bufferedImage = ImageIO.read(new ByteArrayInputStream(decrpt));

其中Decrypt是字节数组,它在ImageIO中显示错误.我不知道该参数是什么,请帮助我解决它.

解决方法

希望此代码可以帮助您:
byte[] data = item1.getBytes();
Bitmap bmp = BitmapFactory.decodeByteArray(data,data.length);
imageview.setImageBitmap(bmp);
原文链接:https://www.f2er.com/android/316807.html

猜你在找的Android相关文章