Android examples for Graphics:Bitmap Scale
get Scaled Bitmap
//package com.java2s; import android.graphics.Bitmap; public class Main { public static Bitmap getScaledBitmap(Bitmap bitmap, int width, int height) { return bitmap.createScaledBitmap(bitmap, width, height, false); }/*from w w w . j a va 2s . com*/ }