I imagine those System.Drawing.Brushes.SomeColor
can eventually break down to some numbers, or vectors perhaps, such as 0 is black and 255 is white in a 8-bit gray scale representation.
So I am wondering is there any chance an integer can be converted to System.Drawing.Brushes.SomeColor
? Or perhaps an integer array like (a,a,a), where int a = someNumber;
Thanks.