欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;
		}
	}
}
相关标签: java基础