What is the color white returned from the GetPixel() method? [closed]

StackOverflow https://stackoverflow.com/questions/17547196

  •  02-06-2022
  •  | 
  •  

سؤال

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