Android examples for Graphics:Bitmap Byte Array
byte Array To Bitmap
//package com.java2s; import android.graphics.Bitmap; import android.graphics.BitmapFactory; public class Main { public static Bitmap byteArrayToBitmap(byte[] byteArray) { Bitmap output = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);/* ww w . j a v a 2 s .c o m*/ return output; } }