Friday, March 20, 2009

ImageMagickで透明な文字列を描画する - その2

ImageMagickでantialiasを効かせて透明な文字列を描画するには、以下のバッチファイルを実行します。

rem 環境によって変えてね
set im=C:\Progra~1\ImageMagick-6.4.8-Q16

%im%\convert.exe sf.jpg ( -size 150x150 xc:white -matte -fill black -font Tahoma -pointsize 120 -gravity center -draw "text 0,0 'SF'" -channel a -fx "r" -channel rgb -fx "#BBDDFF" ) -composite sample904a.png

%im%\convert.exe sf.jpg ( -size 150x150 xc:white -matte -fill black -font Tahoma -pointsize 120 -gravity center -draw "text 0,0 'SF'" -channel a -fx "r*0.5" -channel rgb -fx "#000000" ) -composite sample904b.png

出力画像1(sample904a.png)


出力画像2(sample904b.png)


関連項目
ImageMagickで透明な文字列を描画する

No comments: