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

How do I take an image file and convert it into a raster and then access its data (RBG values) pixel by pixel?

share|improve this question

5 Answers

up vote 2 down vote accepted
BufferedImage img = ImageIO.read(new File("lol"));
int rgb = img.getRGB(x, y);

Color c = new Color(rgb);

Now you can use Color.getRed(), getGreen(), getBlue() and getAlpha() to get the different values

share|improve this answer
BufferedImage image = ImageIO.read(new File(myFilename));
int pixel = image.getRGB(0, 0); // Top left pixel.
// Access the color components, valued 0-255.
int alpha = (pixel >>> 24) & 0xff; // If applicable to image format.
int r = (pixel >>> 16) & 0xff;
int g = (pixel >>> 8) & 0xff;
int b = pixel & 0xff;

[Edit] Note that @Sibbo's answer is correct and conveniently uses the Color class color accessor methods; however, extracting the colors directly via bit manipulation as I have demonstrated will likely be considerably faster since it avoids the overhead of repeated constructor calls.

share|improve this answer
int r = (pixel >>> 16) & 0xff; int g = (pixel >>> 8) & 0xff; int b = pixel & 0xff; what do these lines of code do? and what is the & opereator or the 0xff mean – lancegerday Oct 26 '11 at 18:52
@lancegerday: those lines extract the individual color values (r, g, b, a) from the composite RGBA "pixel" value so that you can easily inspect them individual as values between 0 and 255. – maerics Jun 11 '12 at 17:07

Use ImageIO.read to read the image file in as a BufferedImage, and then use one of the getData methods to obtain the image's Raster. And therein, you'll find methods to obtain pixel data.

share|improve this answer

Don't use the rgb values after you completed turning the image into a raster use the rasters .getData method

share|improve this answer

Use this:

Image img.getRGB(x, y);

Color c = new Color(rgb);
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.