0

我在将字节数组转换为位图时遇到问题。现在我想要实现的是我将图像作为字节数组获取并尝试转换为位图以便我可以显示图像。但是在我的位图输出中运行下面的代码后,我得到了Null 值

String t= "byte array of the image";
byte[] temp = t.getBytes() ;
Bitmap bmp = BitmapFactory.decodeByteArray(temp, 0, temp.length);
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
System.out.println("bitmap output"+bmp);

我用谷歌搜索了很多,发现这段代码适用于every1。可以请有人告诉我我在哪里做错了。

提前致谢

4

2 回答 2

1
In my case this is working

String result = "here imge;

if (result != "") {
byte[] bloc = Base64.decode(result); 
BitmapFactory.Options options=new BitmapFactory.Options();
options.inSampleSize = 8; 
Bitmap b = BitmapFactory.decodeByteArray(bloc, 0, bloc.length);
于 2013-09-14T08:04:55.223 回答
0

试试这个方法

String t= "byte array of the image";

byte[] temp = Base64.decode(t, Base64.NO_WRAP); //UPDATE HERE

Bitmap bmp = BitmapFactory.decodeByteArray(temp, 0, temp.length);
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
System.out.println("bitmap output"+bmp);
于 2013-09-14T07:28:14.897 回答