PHP图像过滤问题

发布于 2024-10-26 09:27:51 字数 271 浏览 1 评论 0原文

为什么示例 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 技术交流群。

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

发布评论

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

评论(4

Hello爱情风 2024-11-02 09:27:51

根据 PHP: imagefilter - Manual,看起来 255 超出了范围IMG_FILTER_CONTRAST 的值。

文档缺少 ImageFilter() 参数的确切含义和有效范围。根据 5.2.0 来源,参数是:
...
IMG_FILTER_CONTRAST
-100 = 最大对比度,0 = 无变化,+100 = 最小对比度(注意方向!)

According to PHP: imagefilter - Manual, it looks like 255 is outside of the range of values for IMG_FILTER_CONTRAST.

The documentation misses the exact meaning and valid ranges of the arguments for ImageFilter(). According to the 5.2.0 sources the arguments are:
...
IMG_FILTER_CONTRAST
-100 = max contrast, 0 = no change, +100 = min contrast (note the direction!)

执手闯天涯 2024-11-02 09:27:51

正如 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!)
"...

随波逐流 2024-11-02 09:27:51

您想从我们这里听到什么,因为手册说它是对比度级别并且您在两次调用中使用不同的值。

这就是输出不同的原因。

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.

メ斷腸人バ 2024-11-02 09:27:51

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)

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