This site requires JavaScript, please enable it in your browser!
Greenfoot back
Kartoffelbrot
Kartoffelbrot wrote ...

2013/9/23

Converting GreenfootImage to png

Kartoffelbrot Kartoffelbrot

2013/9/23

#
How can I do that?
Gevater_Tod4711 Gevater_Tod4711

2013/9/23

#
GreenfootImage yourImage = new GreenfootImage(10, 10);
try {
    javax.imageio.ImageIO.write(yourImage.getAwtImage(), "png", new java.io.File("pathname.png"));
}
catch (IOException ioe) {
    ioe.printStackTrace();
}
I haven't tried that. But I think it should work.
Kartoffelbrot Kartoffelbrot

2013/9/24

#
Mache ich mal.
You need to login to post a reply.