I ask if there is a simple way because there is a google issue report saying that using decodeByteArray isn\'t possible. But that report originated in 2008 and I was hoping
The easiest way is to create a BufferedImage the following way:
Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0. data.length);
data is the byte array.