GetPixel()方法返回的白色是什么?

时间:2013-07-09 11:33:16

标签: c# getpixel

从GetPixel()方法返回的白色的RBG值是多少? 是(255,255,255)还是(0,0,0)?

1 个答案:

答案 0 :(得分:4)

白色= 255 255 255

黑色= 0 0 0

有一个简单的代码可以检查

  Byte r = Color.White.R; // r = 255
  Byte g = Color.White.G; // g = 255
  Byte b = Color.White.B; // b = 255