Hi all,
I can get the hue, saturation and brightness of a color using the following code:
hue = Color.FromArgb(r, g, b).GetHue()
sat = Color.FromArgb(r, g, b).GetSaturation()
bri = Color.FromArgb(r, g, b).GetBrightness()
But how do I convert the hue, saturation and brightness levels back to...