Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.media.ExifInterface;

import java.io.IOException;

public class Main {

    public static int getImageOrientation(String uri) throws IOException {
        ExifInterface exif = new ExifInterface(uri);
        int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
        return orientation;
    }
}