Java tutorial
//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; } }