Here you can find the source of getBitmapSize(Bitmap bitmap)
public static int getBitmapSize(Bitmap bitmap)
//package com.java2s; import android.graphics.Bitmap; public class Main { public static int getBitmapSize(Bitmap bitmap) { return bitmap.getRowBytes() * bitmap.getHeight(); }/*from w w w .j ava 2 s . c o m*/ }