PHP imagepng() 函数中质量属性的标准值
根据 PHP 的官方文档,imagepng() 函数具有以下签名:
bool imagepng ( resource $image [, string $filename [, int $quality [, int $filters ]]] )
我现在需要知道的是 $quality 的标准值是多少。我在文档中找不到它。
有没有一些资料来源可以解释它或任何了解它的人?
According to PHP's official documentation the imagepng() function has the following signature:
bool imagepng ( resource $image [, string $filename [, int $quality [, int $filters ]]] )
What I need to know now is what the standard value of $quality is. I cannot find it anywhere in the documentation.
Is there some source that explains it or anyone who knows about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 php 源代码(gd.h):
结论:
根据 Zlib 手册 (http://www.zlib.net/manual.html),默认压缩级别设置为 6。
from php source (gd.h):
Conclusion:
Based on the Zlib manual (http://www.zlib.net/manual.html) the default compression level is set to 6.
来自:https://www.php.net/manual/en/function。图片png.php
默认值为 0
from: https://www.php.net/manual/en/function.imagepng.php
default value is 0
在php的源代码中,质量参数默认为0。但我不知道哪个值最适合图像处理。
In php's source code quality parameter was defaulted to 0. But i havent idea for which value is optimal for image processing.