开发者

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开发者_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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜