将像素值转换为RGB格式

时间:2011-04-18 10:03:15

标签: java

我有一个像素的红色,绿色和蓝色值。如何将它们转换为RBG格式以创建新图像?我基本上需要一个相反的过程:

int red = (rgb >> 16) & 0xFF;
int green = (rgb >> 8) & 0xFF;
int blue = rgb & 0xFF;

2 个答案:

答案 0 :(得分:5)

int rgb = ((r << 16) | ((g << 8) | b);

假设它是RGB888。确保r,g and b全部在0-255范围内

答案 1 :(得分:0)

使用java.awt.Color课程是一种很好的做法 它会使事情更简单更容易。在你的情况下,它将是:

Color myColor = new Color(red, green, blue); //Construct the color
myColor.getRGB(); //Get the RGB of the constructed color

或反过来:

Color myColor = new Color(rgb); //Construct the color with the RGB value
myColor.getRed(); //Get the separate components of the constructed color
myColor.getGreen();
myColor.getBlue();

有关详细信息,请参阅Javadocs