Monday, March 19, 2007

ImageMagickで左上が明るい半透明グラデーションを描画する

ImageMagickで左上が明るい半透明グラデーションを描画するには、
以下のバッチファイルを実行します。

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

%im%\convert.exe -size 80x40 xc:#f8f8ffff -channel A -fx "((w-i)/w)*((h-j)/h)*0.6+0.3" grad.png
rem 重ね合わせ
%im%\convert.exe sample2bg.jpg grad.png -geometry +10+10 -composite -fill #204070 -draw "font-size 14 text 16,26 'Flower'" sample107a.jpg

元画像(sample2bg.jpg)


出力画像(sample107a.jpg)

No comments: