import groovy.swing.j2d.*
def gr = new GraphicsRenderer()
gr.renderToFile("sample864a.png", 200, 200){
 antialias("on")
 rect( x: 0, y: 0, width: 200, height: 200,
   borderColor: no){
   texturePaint(x: 0, y: 0, file: 'sf.jpg' )
   filters {
     saturation(amount:1.5);
   }
 }
}
元画像(sf.jpg)
出力画像(sample864a.png)

動作環境
Groovy1.6.0 Beta2, JDK1.6 Update11
関連項目
groovyで引っかいたような背景画像を作成する
groovyで画像をさまざまなパターンで塗りつぶす
groovyで画像を感光させたように加工する
 
No comments:
Post a Comment