Wednesday, April 29, 2009

ScriptomとImageMagickでポリゴンを描画する

ScriptomとImageMagickでポリゴンを描画するには、以下のコードを実行します。


import org.codehaus.groovy.scriptom.*

Scriptom.inApartment
{
im = new ActiveXObject("ImageMagickObject.MagickImage.1")
im.convert("-size", "200x200", "xc:none", "-stroke", "#113377",
"-fill", "#bbddff", "-draw", "polygon 100,0,0,199,199,199",
"sample1071a.png")
}


出力画像(sample1071a.png)
ScriptomとImageMagickで描画したポリゴン

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

関連項目
groovyでポリゴンを描画する (GraphicsBuilderによる同様の処理)
ScriptomとImageMagickで角丸四角を描画する

No comments: