Android Mime Type Get isRotationSupported(String mimeType)

Here you can find the source of isRotationSupported(String mimeType)

Description

is Rotation Supported

Declaration

public static boolean isRotationSupported(String mimeType) 

Method Source Code

//package com.java2s;

public class Main {
    public static boolean isRotationSupported(String mimeType) {
        if (mimeType == null)
            return false;
        mimeType = mimeType.toLowerCase();
        return mimeType.equals("image/jpeg");
    }//  w w  w .  j a v  a2  s. c om
}

Related

  1. getMimeType(byte[] bytes)
  2. isSupportedByRegionDecoder(String mimeType)
  3. getMimeType(String url)
  4. getMIMEType(String fName)
  5. guessMime(String path)