我試圖(在Java中)在合併2種顏色時得到最終的顏色,頂部有alpha透明度的顏色。基本上,我正在嘗試爲圖像分配背景顏色,但我已將其分解爲每個像素單獨更改。我看過幾篇文章,包括this one,都無濟於事。有人知道如何進行這種RGBA/RGB混色?我目前的代碼使用PNG文件:將2個RGB顏色與Alpha結合使用
,併產生這種JPG:
這是我目前使用的功能。爲演示圖片背景設置爲全藍,或255
public static void PNGToJPEGConvert(String PNGPath, String NewJPEGPath, int BackColor) throws IOException {
try {
BufferedImage bufferedImage = ImageIO.read(new File(PNGPath));
BufferedImage newImage;
int R1, G1, B1, R2 = (BackColor & 0xFF0000) >> 16, G2 = (BackColor & 0xFF00) >> 8, B2 = (BackColor & 0xFF), W1, W2, W3, M1, M2, R3, G3, B3;
float br;
newImage = new BufferedImage(bufferedImage.getWidth(), bufferedImage.getHeight(), BufferedImage.TYPE_4BYTE_ABGR);
for(int x=0; x < bufferedImage.getWidth(); x++) {
for(int y=0; y < bufferedImage.getHeight(); y++) {
R1 = BufferedImageGetPixelARGB(bufferedImage, "R", x, y);
G1 = BufferedImageGetPixelARGB(bufferedImage, "G", x, y);
B1 = BufferedImageGetPixelARGB(bufferedImage, "B", x, y);
W1 = Math.min(R1, Math.min(G1, B1));
W2 = Math.min(R2, Math.min(G2, B2));
R1 -= W1;
G1 -= W1;
B1 -= W1;
R2 -= W2;
G2 -= W2;
M1 = Math.max(R1, Math.max(G1, B1));
M2 = Math.max(R2, Math.max(G2, B2));
br = (M1 + M2)/(2*BufferedImageGetPixelARGB(bufferedImage, "A", x, y));
R3 = (int) ((R1 + R2) * br);
G3 = (int) ((G1 + G2) * br);
B3 = (int) ((B1 + B2) * br);
W3 = (W1 + W2)/2;
R3 += W3;
G3 += W3;
B3 += W3;
newImage.setRGB(x, y, RGBValuesToInt(R3, G3, B3));
}
}
try {
ImageIO.write(newImage, "jpg", new File(NewJPEGPath));
} catch(Exception e) {
}
} catch(Exception e) {
}
}
感謝您的幫助一個int, -Neil
這幫助我混合一種顏色與黑色來獲得自己的黑暗版本。謝謝! – speedynomads