Thursday, March 26, 2009

groovyで画像を拡散させる

groovyで画像を拡散させるには、以下のコードを実行します。


import groovy.swing.j2d.*

def gr = new GraphicsRenderer()
gr.renderToFile("sample832a.png", 300, 225){
antialias("on")
rect( x: 0, y: 0, width: 300, height: 225,
borderColor: no){
texturePaint(x: 0, y: 0, file: 'sf2.jpg' )
filters {
diffuse(scale: 10)
}
}
}


元画像(sf2.jpg)


出力画像(sample832a.png)
groovyで拡散させた画像

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

関連項目
ScriptomとImageMagickで画像を拡散させる (ScriptomとImageMagickでの同様の処理)
Java2DとJava Image Filters(pixels)を使用して画像を拡散させる

No comments: