Friday, May 25, 2007

ImageMagickでカーブした光沢のある文字列を描画する

ImageMagickでカーブした光沢のある文字列を描画するには、
以下のバッチファイルを実行します。

rem 環境によって変えてね
set im=C:\Progra~1\ImageMagick-6.3.4-Q16
%im%\convert.exe -size 300x80 xc:none -stroke #f8c749 -fill #f8c749 -gravity center -font Tahoma -draw "font-size 50 text 0,0 'ImageMagick'" -fx "(sin(i/w*pi)*h*0.2+h*0.4)>j?#FEF779:p" sample163a.png

出力画像(sample163a.png)



凸形状に光沢をつけるには、以下のコマンドを実行します。
%im%\convert.exe -size 300x80 xc:none -stroke #f8c749 -fill #f8c749 -gravity center -font Tahoma -draw "font-size 50 text 0,0 'ImageMagick'" -fx "(h*0.2-sin(i/w*pi)*h*0.2+h*0.5)>j?#FEF779:p" sample163b.png

出力画像(sample163b.jpg)


関連項目

No comments: