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 int calculateHeight(int width, Bitmap bitmap) {

        float bwinth = bitmap.getWidth();
        float bheight = bitmap.getHeight();

        float scale = bwinth / bheight;

        return (int) (width / scale);
    }
}