import groovy.swing.j2d.svg.*
gr = new SVGRenderer()
gr.renderToFile("sample977a.svg", 200, 200){
roundRect( x:10, y:10, width:180, height:180,
topLeftHeight: 10, topLeftWidth:10,
topRightHeight: 20, topRightWidth:20,
bottomLeftHeight: 30, bottomLeftWidth:30,
bottomRightHeight: 40, bottomRightWidth:40,
fill: color("#bbddff"),
borderColor: color("#103080"),
borderWidth: 2
)
}
出力SVG(sample977a.svg)をPNGにレンダリングした画像
動作環境
Groovy1.6.0, JDK1.6 Update12
関連項目
SVGRendererで角丸四角を描画する
SVGRendererでグラデーションのかかった星を描画する (図形をグラデーションで塗りつぶす方法)
groovyで四隅の角丸を指定して四角を描画する (GrapchisRendererでの)
No comments:
Post a Comment