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