Java tutorial
//package com.java2s; public class Main { /** * Check the image whether support RegionDecode or no. * @param mimeType the image type. * @return whether support RegionDecode or no. */ public static boolean isSupportedByRegionDecoder(String mimeType) { if (mimeType == null) { return false; } mimeType = mimeType.toLowerCase(); return mimeType.startsWith("image/") && (!mimeType.equals("image/gif")); } }