从android中的byteArray创建Bitmap

时间:2011-09-09 08:47:09

标签: android canvas bitmap

我想从bytearray创建一个位图。

我尝试了以下代码

Bitmap bmp;

bmp = BitmapFactory.decodeByteArray(data, 0, data.length);

ByteArrayInputStream bytes = new ByteArrayInputStream(data); 
BitmapDrawable bmd = new BitmapDrawable(bytes); 
bmp = bmd.getBitmap(); 

但是,当我想用​​像

这样的位图来初始化Canvas对象时
Canvas canvas = new Canvas(bmp);

导致错误

java.lang.IllegalStateException: Immutable bitmap passed to Canvas constructor

然后如何从byteArray获取可变位图。

提前致谢。

1 个答案:

答案 0 :(得分:67)

您需要一个可变的Bitmap才能创建Canvas

Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
Bitmap mutableBitmap = bmp.copy(Bitmap.Config.ARGB_8888, true);
Canvas canvas = new Canvas(mutableBitmap); // now it should work ok

编辑:正如Noah Seidman所说,你可以在不创建副本的情况下完成。

BitmapFactory.Options options = new BitmapFactory.Options();
options.inMutable = true;
Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length, options);
Canvas canvas = new Canvas(bmp); // now it should work ok