Page 1 of 1

Handling images

Posted: Thu May 03, 2012 12:14 pm
by kpj
Hello guys,
Is there any possibility to manipulate images in lua/löve? For example scaling, cropping, merging, ... (Like in ... java?).
Maybe some magic with "imageData"?
kpj

Re: Handling images

Posted: Thu May 03, 2012 4:04 pm
by bartbes
kpj wrote:scaling,
love.graphics.draw
kpj wrote:cropping,
Quad
kpj wrote:merging,
Canvas/SpriteBatch

Re: Handling images

Posted: Thu May 03, 2012 5:03 pm
by kpj
First one: stupid me :P
And thanks a lot !