PHP:检查图像质量/像素化的代码(不是压缩率而是真实质量)?
我想知道是否可以(以及如何)使用 GD 库检查真实图像质量 (.jpg)。
显然,我们需要检查文件大小、颜色、图像大小和像素数,并在它们之间进行比较。
例如,如果 1200x600px 图像的大小为 60kb,则其质量可能很差。但如果图像是灰度的,或者只使用一些颜色,那么也许它的质量很好......
那么......有什么想法吗?
I want to know if its possible (and how) to check for real image quality (.jpg) using the GD library.
Obviously we need to check for file size, colors, image size, and number of pixels and compare between them.
For example if an 1200x600px image has a size of 60kb probably its in bad quality. But if the image is in grey scale, or uses only some colors, then maybe its in good quality...
So... any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要的是无参考图像质量评估。我不知道 PHP 的具体实现,但您可以查看 IEEE Transactions on Image Processing 中的算法。
这里有一个专注于 JPEG 压缩的实现:
http:// /www.cns.nyu.edu/~zwang/files/research/nr_jpeg_quality/index.html
What you want is a no-reference image quality assessment. I don't know of a specific implementation for PHP but you can take a look in IEEE Transactions on Image Processing for algorithms.
There's an implementation with focus on JPEG compression here:
http://www.cns.nyu.edu/~zwang/files/research/nr_jpeg_quality/index.html