Java 获取图片的尺寸大小

Java 获取图片的尺寸大小

public static Map<String, Float> getImgInfo(String imgpath) {
Map<String, Float> map = new HashMap<String, Float>(3);
File imgfile = new File(imgpath);
try {
FileInputStream fis = new FileInputStream(imgfile);
BufferedImage buff = ImageIO.read(imgfile);
map.put("width", (float) (buff.getWidth()));
map.put("height", (float) buff.getHeight());
map.put("size", (float) imgfile.length());
fis.close();
} catch (FileNotFoundException e) {
System.err.println("所给的图片文件" + imgfile.getPath() + "不存在!计算图片尺寸大小信息失败!");
map = null;
} catch (IOException e) {
System.err.println("计算图片" + imgfile.getPath() + "尺寸大小信息失败!");
map = null;
}
return map;
}

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。