从DataBufferByte.getData获取每种颜色的0-255个值

时间:2013-04-07 10:23:38

标签: java image-processing bytearray

我正在尝试使用以下代码分析像素

    BufferedImage image;
    try {
        image = ImageIO.read(new File(fileName));
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    }

    final byte[] pixels = ((DataBufferByte)         
    image.getRaster().getDataBuffer()).getData();final int pixelLength = 4;
        for (int pixel = 0, row = 0, col = 0; pixel < pixels.length; pixel += pixelLength) {
            byte alpha = pixels[pixel];
            byte blue = pixels[pixel + 1];
            byte green = pixels[pixel + 2];
            byte red = pixels[pixel + 3];
            //analyze colors
            col++;
            if (col == width) {
                col = 0;
                row++;
            }
        }

我是最简单的例子,我有一个有两个像素的图像,一个有透明度,一个没有。

像素1:红色透明

HEX: FF0000, Alpha 140, (RGB: 255, 0, 0)

像素2:没有透明度的绿松石

HEX: 7FFFD8, Aplha  255, (RGB: 127, 255, 216)

上面的像素数组具有以下值:[-116, 0, 0, -1, -1, -40, -1, 127] 其中每个像素按a,b,g,r的顺序有四个字节(我认为)。

所以我的问题是,如何从上面的结果中得到我用过的0-255个值:)

1 个答案:

答案 0 :(得分:1)

我不确定我是否理解了这个问题......但根据我的理解,这是一个简单的答案。

不进行two's complement的讨论,您可以浏览整个数组并使用以下规则进行转换:

  • 如果值小于零,则添加256
  • 如果值为零或更多,请保持原样

这有帮助吗?