Q: Coloring Schemes
-
Hi there, It's fairly easy to create a
System.Drawing.Color
with any RGB value one wishes. It's also easy to get this color HSB values by usingSystem.Drawing.Color.GetBrightness
,System.Drawing.Color.GetHue
andSystem.Drawing.Color.GetSaturation
member methods. :rolleyes: But can anyone help me create a color from Hue, Saturation and Brightness (HSB) values? :confused: -
Hi there, It's fairly easy to create a
System.Drawing.Color
with any RGB value one wishes. It's also easy to get this color HSB values by usingSystem.Drawing.Color.GetBrightness
,System.Drawing.Color.GetHue
andSystem.Drawing.Color.GetSaturation
member methods. :rolleyes: But can anyone help me create a color from Hue, Saturation and Brightness (HSB) values? :confused:I found this snippet after a quick Google search. It's the 3rd block down. http://www.syncfusion.com/FAQ/WinForms/FAQ_c85c.asp[^]
-
I found this snippet after a quick Google search. It's the 3rd block down. http://www.syncfusion.com/FAQ/WinForms/FAQ_c85c.asp[^]