import groovy.swing.j2d.svg.*
gr = new SVGRenderer()
gr.renderToFile("sample991a.svg", 200, 200){
image(file: "sf.jpg")
font(new java.awt.Font('Tahoma', java.awt.Font.BOLD, 110))
subtract( borderColor: no, fill: 'black', opacity:0.5){
rect(x:20, y:20, width: 160, height: 160)
text( x:30, y:60, text: "SF")
}
}
元画像(sf.jpg)
出力SVG(sample991a.svg)をPNGにレンダリングした画像
動作環境
Groovy1.6.0, JDK1.6 Update12
関連項目
groovyで透明な文字列を描画する (GraphicsRendererでの同様の処理)
No comments:
Post a Comment