我整天都在使用命令行 imagemagick 为文本添加阴影。谷歌搜索了很多页面并尝试了高斯、模糊、阴影命令来投射阴影,但没有成功。
这是我在 php 中的命令:
$img_save = 'C:\Users\abc\Desktop\testimage.jpg';
$line = "Anatidaephobia is the fear that somewhere in the world there is a duck watching you. ";
$line = wordwrap($line, 25, "\\n");
exec("convert -background white -weight bold -size 500x -pointsize 35 -font arial-italic -gravity center -fill black caption:\"$line\" $img_save");
上面的代码毫无困难地给出了图像。谁能告诉如何为图像中的文本添加阴影?
谢谢