Wednesday, May 06, 2009

ScriptomとImageMagickで画像にモーションブラーをかける

ScriptomとImageMagickで画像にモーションブラーをかけるには、以下のコードを実行します。

import org.codehaus.groovy.scriptom.*

Scriptom.inApartment
{
im = new ActiveXObject("ImageMagickObject.MagickImage.1")
im.convert("sf2.jpg", "-motion-blur", "0x8+160", "sample1077a.png")
}

元画像(sf2.jpg)


出力画像(sample1077a.png)
ScriptomとImageMagickでモーションブラーをかけた画像

動作環境
Groovy1.6.0, JDK1.6 Update12, ImageMagick6.5.0, Microsoft VC++ 2008 Redistributable
※ImageMagickインストール時にCOMインターフェイスも入れておくこと。

No comments: