Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

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

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

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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