Here you can find the source of bitmapToByteArray(Bitmap bmp)
public static byte[] bitmapToByteArray(Bitmap bmp)
//package com.java2s; import java.io.ByteArrayOutputStream; import android.graphics.Bitmap; public class Main { public static byte[] bitmapToByteArray(Bitmap bmp) { ByteArrayOutputStream stream = new ByteArrayOutputStream(); bmp.compress(Bitmap.CompressFormat.JPEG, 60, stream); byte[] byteArray = stream.toByteArray(); return byteArray; }//w w w . jav a2 s . c o m }