Sunday, August 12, 2007

ImageMagickで半透明の青いぼかしを重ね合わせる

ImageMagickで半透明の青いぼかしを重ね合わせるには、
以下のバッチを実行します。

rem 環境によって変えてね
set im=C:\Progra~1\ImageMagick-6.3.5-Q16
%im%\convert.exe sample8.jpg ( sample8.jpg -threshold 53000 -negate -channel r -fx "0.2" -channel g -fx "0.2" -channel a -fx "p.b==0?0:0.5" -channel rgba -blur 0x4 ) -composite sample188a.jpg

元画像(sample8.jpg)


出力画像(sample188a.jpg)

No comments: