我想应用图像数据中的 alpha 蒙版。我有不同格式的图像,即 tiffs、PSD PNG 和 jpeg。我将它们作为缓冲图像读取,并希望使用 Twelvemonkeys 库来获取图像中配置的 alpha 路径,并相应地应用透明度。但我找不到相关的功能。请帮忙。
ImageInputStream stream = ImageIO.createImageInputStream(new File(c:/img.psd);
BufferedImage image = Paths.readClipped(stream);
image.getcoclormodel().hasAlpha();
for(i < image.getwidth()) {
for(j < image.getHeight()) {
pixels = image.getRGB(i, j, width, height, null, 0, width);
Color col = new Color(pixels[pixelIndex]);
int p = col.getAlpha()
image.setRGB(i, j, width, height, p, 0, width)
}
}