Friday, May 22, 2009

SVGRendererでCubicCurveを描画する

SVGRendererでCubicCurveを描画するには、以下のコードを実行します。


import groovy.swing.j2d.svg.*

gr = new SVGRenderer()
gr.renderToFile("sample966a.svg", 200, 200){
cubicCurve( x1: 40, y1:200, ctrlx1:0, ctrly1:50,
ctrlx2:200, ctrly2: 0, x2:160, y2:200,
borderColor: color("#aaccff"),
borderWidth: 3
)
}


出力SVG(sample966a.svg)をPNGにレンダリングした画像
SVGRendererで描画したキュービックカーブ

動作環境
Groovy1.6.0, JDK1.6 Update12

関連項目
groovyでCubicCurveを描画する (GraphicsRendererによる同様の処理)

No comments: