Java tutorial
//package com.java2s; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; public class Main { public static Bitmap bytes2Bitmap(Intent intent) { byte[] buff = intent.getByteArrayExtra("bitmap"); Bitmap bm = BitmapFactory.decodeByteArray(buff, 0, buff.length); return bm; } }