Java判断图片格式
程序员文章站
2024-02-18 18:30:04
...
public class ImageUtils {
public static boolean isImage(File imageFile) {
if (!imageFile.exists()) {
return false;
}
try {
Image img = ImageIO.read(imageFile);
return img != null && img.getWidth(null) > 0 && img.getHeight(null) > 0;
} catch (Exception e) {
return false;
}
}
}
上一篇: a标签安全链接
下一篇: Python基础-函数-函数参数