作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何获取图像的分辨率。
BufferedImage theBufferedImage = ImageIO.read(new File("/tmp/foo.jpg"));
int width = theBufferedImage.getWidth();
int height = theBufferedImage.getHeight();
int resolution = ???
问候,萨龙巴
最佳答案
您无法从 BufferedImage
中获取 DPI 或任何其他此类信息,您必须检查原始 JPEG 文件。它只是一个没有任何元数据的光栅图像。如果您要将 BufferedImage 写入文件,则可以设置 DPI。但 BufferedImage 本身没有 DPI 的概念,它只是像素。
关于java - 获取图像分辨率 ( theBufferedImage ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48578345/
如何获取图像的分辨率。 BufferedImage theBufferedImage = ImageIO.read(new File("/tmp/foo.jpg")); int width = the
我是一名优秀的程序员,十分优秀!