0

我正在尝试将字节数组转换为位图以在 android 应用程序中显示图像。但是在转换它时返回空值。我使用了以下代码:

operations = new DataBaseOperations();
byte image[] = operations.fetchimage(); // gets byte array from the database        
BitmapFactory.Options options = new BitmapFactory.Options();
Bitmap bitmap = BitmapFactory.decodeByteArray(image, 0, image.length, options);

这里bitmap是空的,为什么?

4

1 回答 1

4

试试这个链接。它会解决你的问题

如何将字节数组转换为位图

或者只是检查此代码

Bitmap bitmap = BitmapFactory.decodeFile("/path/images.jpg");
ByteArrayOutputStream blob = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.PNG, 0 /*ignored for PNG*/, blob);
byte[] bitmapdata = blob.toByteArray();

//如果位图数据是字节数组,那么获取位图是这样的

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

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

于 2013-10-10T12:35:27.623 回答