Here you can find the source of getBitmapData(Bitmap bmp)
public static byte[] getBitmapData(Bitmap bmp)
//package com.java2s; import java.io.ByteArrayOutputStream; import android.graphics.Bitmap; import android.graphics.Bitmap.CompressFormat; public class Main { public static byte[] getBitmapData(Bitmap bmp) { ByteArrayOutputStream bos = new ByteArrayOutputStream(); bmp.compress(CompressFormat.JPEG, 100, bos); byte[] bitmapdata = bos.toByteArray(); return bitmapdata; }/*from w ww. j ava 2 s. c o m*/ }