我正在尝试将字节数组转换为位图以在 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
是空的,为什么?