Is there an API built into the .NET framework for converting HSV to RGB? I didn't see a method in System.Drawing.Color for this, but it seems surprising that there wouldn't be one in the platform.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I don't think there's a method doing this in the .NET framework. |
|||||||
|
|
There isn't a built-in method for doing this, but the calculations aren't terribly complex. The following C# code converts between RGB and HSV using the algorithms described on Wikipedia.
|
|||
|
|
|
Look at http://richnewman.wordpress.com/hslcolor-class/ which has an excellent c# class to provide all the necessary conversions including to and from windows system colors. |
|||
|
|