Search Results

0
votes

How to change RGB color to HSV?

Note that Color.GetSaturation() and Color.GetBrightness() return HSL values, not HSV. The following code demonstrates the difference. Color original = Color.FromArgb(50, 120, …
1
vote

Is there a built-in C#/.NET System API for HSV to RGB?

There isn't a built-in method for doing this, but the calculations aren't terribly complex. Also note that Color's GetHue(), GetSaturation() and GetBrightness() return HSL values, not HSV. …