문제

What is the RBG value of the color white returned from the GetPixel() method? Is it (255, 255, 255) or (0, 0, 0)?

도움이 되었습니까?

해결책

White = 255 255 255

Black = 0 0 0

There's an easy code to check it

  Byte r = Color.White.R; // r = 255
  Byte g = Color.White.G; // g = 255
  Byte b = Color.White.B; // b = 255
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top