import groovy.swing.j2d.svg.*
gr = new SVGRenderer()
gr.renderToFile("sample985a.svg", 200, 200){
dolphinShape( x:0, y:20, width:200, height:160,
borderColor: color("#aaccff"),
){
shapeStroke(advance:20){
star(cx:10, cy:10, or:10, ir:7, count:5)
rect(x:5, y:5, height:10, width:10)
}
}
}
出力SVG(sample985a.svg)をPNGでレンダリングした画像
動作環境
Groovy1.6.0, JDK1.6 Update12
関連項目
groovyでシェイプストロークを使用して図形を描画する (GraphicsRendererでの同様の処理)
No comments:
Post a Comment