PHP:检查图像质量/像素化的代码(不是压缩率而是真实质量)?

发布于 2024-09-08 07:58:26 字数 197 浏览 4 评论 0原文

我想知道是否可以(以及如何)使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

超可爱的懒熊 2024-09-15 07:58:26

您想要的是无参考图像质量评估。我不知道 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文