vote up 1 vote down star

Okay, so I've been trying to load a BufferedImage using this code:

URL url = this.getClass().getResource("test.png");
BufferedImage img = (BufferedImage) Toolkit.getDefaultToolkit().getImage(url);

This gives me a type cast error when I run it though, so how do I properly load a BufferedImage?

flag

79% accept rate

1 Answer

vote up 4 vote down check

Use ImageIO.read() instead:

BufferedImage img = ImageIO.read(url);
link|flag
That did the trick. Thank you very much. – William Mar 2 at 4:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.