Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GetPixel() 方法返回的白色的 RBG 值是多少?是 (255, 255, 255) 还是 (0, 0, 0)?
白色 = 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