Tuesday, October 02, 2007

ImageMagickで画像にレンガ模様を重ね合わせる

画像にレンガ模様を重ね合わせるには、以下のバッチファイルを実行します。

rem 環境によって変えてね
set im=C:\Progra~1\ImageMagick-6.3.5-Q16
%im%\convert.exe -size 200x200 xc:none -fx "(i+(floor(j/20)%%2)*8)%%30>1&&(i+(floor(j/20)%%2)*8)%%30<29&&
j%%20>1&&j%%20<19?0:1" -shade -45x23 sample235a.png
%im%\convert.exe sf.jpg -channel rgba ( sample235a.png -matte -channel a -fx "0.3" -channel rgba ) -composite sample235b.png


元画像(sf.jpg)


出力画像(sample235b.png)


関連項目
ImageMagickでレンガ模様の背景画像を生成する。

No comments: