up vote 1 down vote favorite
share [g+] share [fb]

What is a Java type which can hold a PNG implement and provide access to it's pixel buffer?

link|improve this question

feedback

4 Answers

up vote 13 down vote accepted
BufferedImage img = ImageIO.read(new File("my.png"));
int color = img.getRGB(23,12);
link|improve this answer
feedback

I would take a look at Java Advanced Imaging, it handle multiple types of image files.

link|improve this answer
feedback

Take a look ImageIO and its numerous static helpers for reading and writing bytes/streams containing an image.

link|improve this answer
feedback

If you want to do pixel based operations on the entire image, I've found calling the getRGB() method every time to be fairly slow. In that case, you might want to try and get access to the actual pixel array holding the image data using something like:

byte[] pixel_array = ((DataBufferByte)img.getRaster().getDataBuffer()).getData()

There may be a more flexible way that doesn't make any presumptions on the array data type.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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