Java tutorial
//package com.java2s; import android.media.ExifInterface; public class Main { private static int getExifOrientation(String src) throws Exception { ExifInterface exifInterface = new ExifInterface(src); return exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); } }