Java tutorial
//package com.java2s; //License from project: Apache License import android.graphics.Bitmap; public class Main { public static int getSize(Bitmap bm) { return bm.getRowBytes() * bm.getHeight(); } }