Java tutorial
//package com.java2s; //License from project: Apache License import android.media.ExifInterface; public class Main { public static float getDegree(int exifOrientation) { if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_90) return 180; else if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_180) return 270; else if (exifOrientation == ExifInterface.ORIENTATION_ROTATE_270) return 0; return 90; } }