我拥有的是R:255 G:181 B:178,我在C#工作(对于WP8,更具体)
我想将其转换为十六进制数字以用作颜色(设置WriteableBitmap的像素颜色)。我正在做的是以下内容:
int hex = (255 << 24) | ((byte)R << 16) | ((byte)G << 8) | ((Byte)B<<0);
但是当我这样做时,我才会变蓝。
任何想法我做错了什么?
此外,要撤消此操作,要检查RGB值,我将:
int r = ((byte)(hex >> 16)); // = 0
int g = ((byte)(hex >> 8)); // = 0
int b = ((byte)(hex >> 0)); // = 255
答案 0 :(得分:32)
Color myColor = Color.FromArgb(255, 181, 178);
string hex = myColor.R.ToString("X2") + myColor.G.ToString("X2") + myColor.B.ToString("X2");
答案 1 :(得分:4)
您可以使用较短的字符串格式来避免字符串连接。
string.Format("{0:X2}{1:X2}{2:X2}", r, g, b)
答案 2 :(得分:2)
使用字符串插值,可以写为:
$"{r:X2}{g:X2}{b:X2}"
答案 3 :(得分:2)
您可以为此使用ColorHelper库:
using ColorHelper;
RGB rgb = new RGB(100, 0, 100);
HEX hex = ColorConverter.RgbToHex(rgb);
答案 4 :(得分:0)
问候人类,
//Red Value
int integerRedValue = 0;
//Green Value
int integerGreenValue = 0;
//Blue Value
int integerBlueValue = 0;
string hexValue = integerRedValue.ToString("X2") + integerGreenValue.ToString("X2") + integerBlueValue.ToString("X2");