Wednesday, June 17, 2009

SVGRendererで図形を回転させる

SVGRendererで図形を回転させるには、以下のコードを実行します。


import groovy.swing.j2d.svg.*

gr = new SVGRenderer()
gr.renderToFile("sample992a.svg", 200, 200){
butterflyShape( x: 0, y: 0, width: 200, height: 200,
fill: color("#bbddff"),
borderColor: color("#103080"),
borderWidth: 2
){
transformations{
rotate(angle:45, x:100, y:100)
}
}
}


出力SVG(sample992a.svg)をPNGでレンダリングした画像
SVGRendererで図形を回転させた画像


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

関連項目
groovyで図形を回転させる (GraphicsRendererでの同様の処理)

No comments: