PHP图像过滤问题
为什么示例 1 中的 IMG_FILTER_CONTRAST 会产生比示例 2 中更亮的图像,有人可以更详细地解释 IMG_FILTER_CONTRAST 参数为什么会发生这种情况吗?
实施例1
imagefilter($image, IMG_FILTER_CONTRAST, 255);
实施例2
imagefilter($image, IMG_FILTER_CONTRAST, 100);
Why does IMG_FILTER_CONTRAST in example 1 produce a brighter image then in example 2 can someone explain the IMG_FILTER_CONTRAST parameter in more detail me as why this happens?
Example 1
imagefilter($image, IMG_FILTER_CONTRAST, 255);
Example 2
imagefilter($image, IMG_FILTER_CONTRAST, 100);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
根据 PHP: imagefilter - Manual,看起来 255 超出了范围
IMG_FILTER_CONTRAST
的值。According to PHP: imagefilter - Manual, it looks like 255 is outside of the range of values for
IMG_FILTER_CONTRAST
.正如 PanuWorld 在文档中的评论中概述的那样 - 链接
“...IMG_FILTER_CONTRAST
-100 = 最大对比度,0 = 无变化,+100 = 最小对比度(注意方向!)
“……
As PanuWorld outlines in a comment in the docs - link
"...IMG_FILTER_CONTRAST
-100 = max contrast, 0 = no change, +100 = min contrast (note the direction!)
"...
您想从我们这里听到什么,因为手册说它是对比度级别并且您在两次调用中使用不同的值。
这就是输出不同的原因。
What do you want to hear from us as the manual says it is the constrast level and you are using different values in both calls.
That's why the output is different.
IMG_FILTER_CONTRAST:更改图像的对比度。使用 arg1 设置对比度级别。
IMG_FILTER_CONTRAST:对比度级别。
http://en.wikipedia.org/wiki/Contrast_(vision)
IMG_FILTER_CONTRAST: Changes the contrast of the image. Use arg1 to set the level of contrast.
IMG_FILTER_CONTRAST: Contrast level.
http://en.wikipedia.org/wiki/Contrast_(vision)