根据Oracle的网站,Color类有一个构造函数,它接受一个表示RGB值的int值。 http://download.oracle.com/javase/1.4.2/docs/api/java/awt/Color.html#Color(int)
RGB颜色实际上是三个不同的数字,范围从0到255。因此将它们组合在一起构成一个int将如下所示:
White 255,255,255
White 255255255
右?所以我将它传递给构造函数并获得鲜艳的蓝绿色。我究竟做错了什么?我没理解什么?
答案 0 :(得分:5)
来自Convert RGB values to Integer
int rgb = red;
rgb = (rgb << 8) + green;
rgb = (rgb << 8) + blue;
拉出价值:
int red = (rgb >> 16) & 0xFF;
int green = (rgb >> 8) & 0xFF;
int blue = rgb & 0xFF;
答案 1 :(得分:2)
来自其他构造函数的Javadoc:
使用。创建sRGB颜色 指定的组合RGBA值 由α中的α成分组成 位24-31,红色分量为位 16-23,绿色分量位 8-15,蓝色分量位 0-7。如果hasalpha参数是 false,alpha默认为255。
因此,您只需要使用bit operations构建int。
答案 2 :(得分:0)
Color col=new Color(255,255,255);
Label l1=new Label("I got this color");
//在标签背景中设置颜色
l1.setBackground(col);