Java tutorial
//package com.java2s; //License from project: Apache License import android.annotation.SuppressLint; public class Main { @SuppressLint("DefaultLocale") public static boolean isRotationSupported(String mimeType) { if (mimeType == null) return false; mimeType = mimeType.toLowerCase(); return mimeType.equals("image/jpeg"); } }