7

我有一个 BufferredImage 和一个 boolean[][] 数组。我想在图像完全透明的情况下将数组设置为 true。

就像是:

for(int x = 0; x < width; x++) {
    for(int y = 0; y < height; y++) {
        alphaArray[x][y] = bufferedImage.getAlpha(x, y) == 0;
    }
}

但是 getAlpha(x, y) 方法不存在,我没有找到其他可以使用的方法。有一个 getRGB(x, y) 方法,但我不确定它是否包含 alpha 值或如何提取它。

谁能帮我?谢谢!

4

3 回答 3

7
public static boolean isAlpha(BufferedImage image, int x, int y)
{
    return image.getRBG(x, y) & 0xFF000000 == 0xFF000000;
}
for(int x = 0; x < width; x++)
{
    for(int y = 0; y < height; y++)
    {
        alphaArray[x][y] = isAlpha(bufferedImage, x, y);
    }
}
于 2012-05-02T19:05:57.433 回答
2

试试这个:

    Raster raster = bufferedImage.getAlphaRaster();
    if (raster != null) {
        int[] alphaPixel = new int[raster.getNumBands()];
        for (int x = 0; x < raster.getWidth(); x++) {
            for (int y = 0; y < raster.getHeight(); y++) {
                raster.getPixel(x, y, alphaPixel);
                alphaArray[x][y] = alphaPixel[0] == 0x00;
            }
        }
    }
于 2012-05-02T19:14:36.587 回答
1
public boolean isAlpha(BufferedImage image, int x, int y) {
    Color pixel = new Color(image.getRGB(x, y), true);
    return pixel.getAlpha() > 0; //or "== 255" if you prefer
}
于 2012-05-07T14:23:53.083 回答