Getting pixel data from an image using java

前端 未结 6 1135
眼角桃花
眼角桃花 2020-12-02 14:11

I\'m trying to get the pixel rgb values from a 64 x 48 bit image. I get some values but nowhere near the 3072 (= 64 x 48) values that I\'m expectin

6条回答
  •  醉梦人生
    2020-12-02 14:38

    This works too:

    BufferedImage img = ImageIO.read(file);
    
    int[] pixels = ((DataBufferInt)img.getRaster().getDataBuffer()).getData();
    

提交回复
热议问题