Here you can find the source of bitmapSize(Bitmap bitmap)
public static final int bitmapSize(Bitmap bitmap)
//package com.java2s; import android.graphics.Bitmap; public class Main { public static final int bitmapSize(Bitmap bitmap) { if (bitmap == null) { return 0; }//from w w w . java 2 s .c o m return bitmap.getRowBytes() * bitmap.getHeight(); } }