Here you can find the source of getScaledBitmap(Bitmap bitmap, int width, int height)
public static Bitmap getScaledBitmap(Bitmap bitmap, int width, int height)
//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 ww . j a v a 2s .c om*/ }