Friday, February 08, 2008

ImageMagickで、半透明グラデーションの吹き出しを描画する

半透明グラデーションの吹き出しを描画するには、以下のバッチファイルを実行します。

rem 環境によって変えてね
set im=C:\Progra~1\ImageMagick-6.3.7-Q16
%im%\convert.exe -size 200x200 xc:none -matte -channel rgba -fill white
+antialias -draw "roundrectangle 40,50 160,80 10,10 path
'M 100,80 L 100,90 L 110,80 Z" -negate -blur 0x10
( -size 200x200 xc:none -fill white +antialias -draw
"roundrectangle 40,50 160,80 10,10 path 'M 100,80 L 100,90 L 110,80 Z" )
-compose src_in -composite -fill black -gravity northwest -draw
"font-size 15 text 55,58 'San Francisco'" sample303a.png

%im%\convert.exe sf.jpg -geometry +50+50 sample303a.png -composite sample303b.jpg

元画像(sf.jpg)


出力画像(sample303a.png)


関連項目
ImageMagickで、明度を変えた吹き出しを描画する
ImageMagickで吹き出しを作成する - その4

No comments: