40 votes

créer Bitmap à partir de byteArray dans android

Je veux créer un bitmap à partir d'un bytearray .

J'ai essayé les codes suivants

Bitmap bmp;

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

et

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

Mais ,quand je suis tring pour initialiser l'objet Canvas avec le bitmap comme

Canvas canvas = new Canvas(bmp);

Cela conduit à une erreur

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

Ensuite, comment obtenir un bitmap mutable à partir d'un byteArray.

Merci d'avance.

77voto

Gabriel Negut Points 6081

Vous avez besoin d'un Bitmap mutable pour créer le 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

Edit : Comme Noah Seidman l'a dit, vous pouvez le faire sans créer de copie.

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

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X