前端之家收集整理的这篇文章主要介绍了
java – 检索文件系统中图像的尺寸,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在使用
Java的本地
文件系统中检索图像的尺寸(通常是jpeg,png,jpg和gif)?
您可以使用java的图像类来
获取图像
属性.这是样本 –
BufferedImage img = ImageIO.read(new File("imageFilePath"));
int height = img.getHeight();
int width = img.getWidth();
原文链接:https://www.f2er.com/java/123824.html