Java tutorial
//package com.java2s; //License from project: Apache License import android.graphics.Bitmap; public class Main { /** * Resize bitmap * @param bitmap * @param width * @param height * @return scaled bitmap */ public static Bitmap resizeBitmap(Bitmap bitmap, int width, int height) { return Bitmap.createScaledBitmap(bitmap, width, height, false); } }