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开发者_Go百科 = new byte[3][image.getWidth()][image.getHeight()];
Big Thanks
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.
精彩评论