ImageMagickで画像に影付けして複数方向にモーションブラーをかけるには、
以下のバッチを実行します。
rem 環境によって変えてね
set im=C:\Progra~1\ImageMagick-6.3.4-Q16
%im%\convert.exe -size 150x150 xc:#ffffff ( sample2.png -background none -gravity center -extent 150x150 ) ( +clone -background #bbddff -shadow 80x2+0+0 -motion-blur 0x20+225 ) +swap ( +clone -background #bbddff -shadow 80x2+3+3 -motion-blur 0x20+105 ) +swap ( +clone -background #bbddff -shadow 80x2+3+3 -motion-blur 0x20+345 ) +swap -mosaic sample161a.jpg
上記のバッチでは、225度、105度、345度にモーションブラーをかけています。
元画像(sample2.png)
出力画像(sample161a.jpg)
No comments:
Post a Comment