Java tutorial
//package com.java2s; import android.graphics.Bitmap; public class Main { private static Bitmap createLargeToSmallBitmap(int widthBitmap, int heightBitmap, int widthTarget, int heightTarget, Bitmap bitmap) { int x = (widthBitmap - widthTarget) / 2; int y = (heightBitmap - heightTarget) / 2; return Bitmap.createBitmap(bitmap, x, y, widthTarget, heightTarget); } }