我得到了一些用于从rgb值计算R,G和B值的代码。它们看起来像这样:
public static int getR(int rgb) {
return (rgb >> 16) & 0xff;
}
public static int getG(int rgb) {
return (rgb >> 8) & 0xff;
}
public static int getB(int rgb) {
return rgb & 0xff;
}
现在我必须做以下练习。我正在改变图像的正确部分,但一切都是黑色的。
/**
* Converts a picture by dividing it in three equal parts along the X axis.
* In the first (left) part, only the red component is drawn. In the second
* (middle) part, only the green component is drawn. In the third (right) part,
* only the blue component is drawn.
*
* @param pixels The input pixels.
* @return The output pixels.
*/
public static int[][] andyWarhol(int[][] pixels) {
int i, j;
//Convert red part:
for (i = 0; i < pixels.length / 3; i++) {
for (j = 0; j < pixels[0].length; j++) {
pixels[i][j] = Colors.getR(pixels[i][j]);
}
}
//Convert yellow part:
for (i = pixels.length / 3; i < pixels.length * 2 / 3; i++) {
for (j = 0; j < pixels[0].length; j++) {
pixels[i][j] = Colors.getG(pixels[i][j]);
}
}
//Convert blue part:
for (i = pixels.length * 2 / 3; i < pixels.length; i++) {
for (j = 0; j < pixels[0].length; j++) {
pixels[i][j] = Colors.getB(pixels[i][j]);
}
}
return pixels;
}
答案 0 :(得分:0)
我怀疑你的alpha是0(透明)。 我不知道它是如何使用的,但java中的颜色通常是'argb'。 尝试使用(颜色| 0xff_00_00_00)
答案 1 :(得分:0)
解决。 好的,因为我怀疑我必须将R,B和G的每个值再次转换为rbg值。有道理