Tuesday, January 27, 2009

groovyで画像を台形変形させる

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


import groovy.swing.j2d.*

def gr = new GraphicsRenderer()
gr.renderToFile("sample866a.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 {
perspective(x0:25, y0:30, x1:175, y1:30,
x2:200, y2:200, x3:0, y3:200)
}
}
}


元画像(sf.jpg)


出力画像(sample866a.png)
groovyで台形変形させた画像

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

関連項目
groovyで画像を指定された点に引き寄せる

No comments: