How to convert image file data in a byte array to a Bitmap? How to convert image file data in a byte array to a Bitmap? android android

How to convert image file data in a byte array to a Bitmap?


Just try this:

Bitmap bitmap = BitmapFactory.decodeFile("/path/images/image.jpg");ByteArrayOutputStream blob = new ByteArrayOutputStream();bitmap.compress(CompressFormat.PNG, 0 /* Ignored for PNGs */, blob);byte[] bitmapdata = blob.toByteArray();

If bitmapdata is the byte array then getting Bitmap is done like this:

Bitmap bitmap = BitmapFactory.decodeByteArray(bitmapdata, 0, bitmapdata.length);

Returns the decoded Bitmap, or null if the image could not be decoded.


The answer of Uttam didnt work for me. I just got null when I do:

Bitmap bitmap = BitmapFactory.decodeByteArray(bitmapdata, 0, bitmapdata.length);

In my case, bitmapdata only has the buffer of the pixels, so it is imposible for the function decodeByteArray to guess which the width, the height and the color bits use. So I tried this and it worked:

//Create bitmap with width, height, and 4 bytes color (RGBA)    Bitmap bmp = Bitmap.createBitmap(imageWidth, imageHeight, Bitmap.Config.ARGB_8888);ByteBuffer buffer = ByteBuffer.wrap(bitmapdata);bmp.copyPixelsFromBuffer(buffer);

Check https://developer.android.com/reference/android/graphics/Bitmap.Config.html for different color options