如何使用 PHP 检查照片 DPI
有可能吗使用 php 检查照片 dpi 的方法。我有 300 dpi 和 72 dpi 的照片。但想要一种自动计算 dpi 的方法。
Possible Duplicate:
Get/set DPI with PHP GD/Imagick?
Is there a possible way to check photo dpi with php. I have 300 dpi and 72 dpi photos. but wants a way to calculate dpi automatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想要
没有 Imagick 或 GD Library
。我一直在努力解决这个问题,既然我找到了它,那就开始吧。
然后打印数组或用它做你想做的事情。
If you want it
without Imagick or GD Library
.I was struggling with this, and since I found it, here you go.
and then print the array or do with it what you want.
我现在检查已经太晚了,但我认为您正在寻找 <代码>Imagick::getImageResolution() 和
Imagick::setImageResolution()
如果您需要更改 DPI。我认为 GD 不可能做到这一点,我相信它将所有图像“转换”为 72 DPI。
It's too late for me to check now but I think you're looking for
Imagick::getImageResolution()
andImagick::setImageResolution()
if you need to change the DPIs.I don't think this is possible with GD, I believe it "converts" all images to 72 DPIs.