php Imagick::levelImage 用法
我已经很努力了,但无法使这个方法正常工作。
使用格式是
Imagick::levelImage ( float $blackPoint , float $gamma , float $whitePoint [, int $channel = Imagick::CHANNEL_ALL ] );
我尝试使用它喜欢
$img->levelImage (0, 1.0, 255);
甚至
$img->levelImage (255, 1.0, 0);
喜欢
$img->levelImage (-0.5, 1.0, 5.6);
但没有任何成功。
输出图像几乎是黑色或几乎是白色。
我使用的所有其他 imagick 方法都工作正常,但这个方法对我来说只是一个阻碍))
我在网上找不到任何使用此 imagick 方法的示例,因此需要帮助!
也许有人有一个很好的工作示例,请帮助我:)
I have trying hard, but can't make this method works properly.
The usage format is
Imagick::levelImage ( float $blackPoint , float $gamma , float $whitePoint [, int $channel = Imagick::CHANNEL_ALL ] );
I try use it like
$img->levelImage (0, 1.0, 255);
and
$img->levelImage (255, 1.0, 0);
or even like
$img->levelImage (-0.5, 1.0, 5.6);
but without any success.
Output image is either almost black or almost white.
All other imagick methods I use work fine, but this one is just a back-breaker for me))
I can't find any examples of usage this imagick method on the net so need help!
Maybe somebody have an good working example, help me please:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 LevelImage 的 ImageMagick 文档:
因此,来自 PHP 的合理调用可能如下所示:
我猜测 QuantumRange 设置为 255,如果没有,请尝试调用 Imagick::getQuantumRange 了解它是什么。
如果它仍然不起作用,我将通过编写示例代码来找出问题所在。
Looking at the ImageMagick documentation for LevelImage:
So a sensible call from PHP might look like this:
I'm guessing the QuantumRange is set at 255, if not, try calling Imagick::getQuantumRange to find out what it is.
If it still doesn't seem to work, I'll figure out what's wrong by writing example code.