So right now I have a number between 0 and 2^24, and I need to map it to three RGB values. I\'m having a bit of trouble on how I\'d accomplish this. Any assistance is apprec
You can do
Color c = Color.FromArgb(someInt);
and then use c.R, c.G and c.B for Red, Green and Blue values respectively
c.R
c.G
c.B