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