我要搬到一家不允许我执行convert
ImageMagick 命令的新托管公司。所以我现在必须尝试通过直接的 PHP 来实现。我花了相当多的时间试图弄清楚它,并且在我看到的每一个地方,人们都建议convert
像我一样使用该命令。我将不胜感激在直接 PHP 中编写以下命令的任何帮助或指导。
# Applies overlay $filter_image to the original $image
convert $image ( -clone 0 -alpha off $filter_image -compose SoftLight -composite ) -compose SrcIn -composite $output_image
和
# Apply a blur to an image
convert $image -blur 0x$blur_radius $output_image
更新:
我已经弄清楚了语法并将其发布为答案。