我有一个像素的红色,绿色和蓝色值。如何将它们转换为RBG格式以创建新图像?我基本上需要一个相反的过程:
int red = (rgb >> 16) & 0xFF;
int green = (rgb >> 8) & 0xFF;
int blue = rgb & 0xFF;
答案 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。