PHP Imagemagick 小插图

发布于 2024-12-02 23:08:16 字数 210 浏览 1 评论 0原文

如何使用 PHP 和 ImageMagik 将晕影效果应用于图像。我发现了这个功能,但我不知道如何使用它。

Imagick::vignetteImage

感谢您的帮助!

How want to apply a vignette effect to an image using PHP with ImageMagik. I found this function but I'm not sure how to use it.

Imagick::vignetteImage

Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

被翻牌 2024-12-09 23:08:16

正确答案:阅读文档

Correct answer: read the docs.

落墨 2024-12-09 23:08:16

假设您安装了正确版本的 Image Magick 和 PHP 库:

<?php
    $image = new Imagick();
    $image->readImage($in);
    $image->vignetteImage ( float $blackPoint , float $whitePoint , int $x , int $y )
    $image->writeImage($out);
?>

Assuming you have the correct version of Image Magick and the PHP library installed:

<?php
    $image = new Imagick();
    $image->readImage($in);
    $image->vignetteImage ( float $blackPoint , float $whitePoint , int $x , int $y )
    $image->writeImage($out);
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文