List of utility methods to do Gif File Check
boolean | isGif(String filePath) is Gif boolean isGif = false; if (StringUtil.isEmpty(filePath)) { return isGif; File file = new File(filePath); if (file.exists() && file.isFile()) { FileInputStream fis = null; try { ... |