Gramero
Gramero

Reputation: 1885

How to convert java.awt.Image to byte arrays in java?

I have the java.awt.Image object and I want to convert it into bytes array that contain RGB value of each pixel. For example,

byte[][][] image_color = new byte[3][image.getWidth()][image.getHeight()];

Big Thanks

Upvotes: 2

Views: 2922

Answers (1)

Hosam Aly
Hosam Aly

Reputation: 42474

Check the overloads of java.awt.image.BufferedImage.getRGB(), or the methods of java.awt.image.Raster, which can be obtained through BufferredImage.getRaster(). You can find some sample usage here.

Upvotes: 1

Related Questions