コマンドラインの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");
上記のコードは問題なく画像を提供します。画像内のテキストに影を追加する方法を誰か教えてもらえますか?
ありがとう