Frage

I have a ByteArrayOutputStream I have created using the QRGen Qr code generation library, and I want to turn it into a BufferedImage object and present it in an ImageView in Android. How may that be achieved?

War es hilfreich?

Lösung

Convert the ByteArrayOutputStream to Byte array

byte[] data = baos.toByteArray(); //baos is your ByteArrayOutputStream object

them create a bitmap out of it using the BitmapFactory

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

them take your ImageView and set its bitmap

imageView.setImageBitmap(bmp);
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top