Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.io.File;

import android.graphics.BitmapFactory;

public class Main {

    public static int[] getSize(File bitmapFile) {
        int[] hw = new int[] { 0, 0 };
        BitmapFactory.Options opts = new BitmapFactory.Options();
        opts.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(bitmapFile.getPath(), opts);
        hw[0] = opts.outWidth;
        hw[1] = opts.outHeight;
        return hw;
    }
}