Wednesday, February 18, 2009

groovyでストロークにグラデーションをかける

groovyでストロークにグラデーションをかけるには、以下のコードを実行します。


import groovy.swing.j2d.*

def gr = new GraphicsRenderer()
gr.renderToFile("sample814a.png", 200, 200){
antialias("on")
rect( x:10, y:10, width:180, height:180,
arcWidth: 20, arcHeight:20,
fill: color("#fffff0"),
borderWidth: 6
){
borderPaint(){
gradientPaint( x1: 0, y1: 0, x2: 0, y2: 200,
color1: "#ffffe0", color2: "#f0d090")
}
}
}


出力画像(sample814a.png)
groovyでストロークにグラデーションをかけた画像

動作環境
Groovy1.6.0 Beta2, JDK1.6 Update11

関連項目
groovyで図形をグラデーションで塗りつぶす
SVGRendererでストロークにグラデーションをかける (SVGRendererでの同様の処理)

No comments: