Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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);
    }
}