how to decode a bytearray to bitman in adroid

Solutions on MaxInterview for how to decode a bytearray to bitman in adroid by the best coders in the world

showing results for - "how to decode a bytearray to bitman in adroid"
Dean
12 Jan 2021
1// If bitmapdata is the byte array then getting Bitmap is done like this:
2
3Bitmap bitmap = BitmapFactory.decodeByteArray(bitmapdata, 0, bitmapdata.length);
4
similar questions