1

コマンドラインの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");

上記のコードは問題なく画像を提供します。画像内のテキストに影を追加する方法を誰か教えてもらえますか?

ありがとう

4

2 に答える 2

0

最初に影を描画してから、フォントでその上に描画するだけです

convert -size 500x500 xc:white -pointsize 35 -font arial-italic -gravity center       - fill red -draw "text 2,2 'text'" -fill black -draw "text 0,0 'text'" outfile.jpg
于 2013-06-13T19:18:01.003 に答える