vote up 1 vote down star

As per the question title, How could I take a hex code and convert it to a .Net Color object, and do it the other way?

I googled and keep getting the same way which doesn't work.

 ColorTranslator.ToHtml(renderedChart.ForeColor)

Which returns the name of the color as in 'White' instead of '#ffffff'! Doing it the other way seems to have odd results, only working some of the time...

flag

3 Answers

vote up 4 vote down check

Something like :

Color color = Color.Red;
string colorString = string.Format("#{0:X2}{1:X2}{2:X2}", color.R, color.G, color.B);

Doing it the other way is a little more complex as #F00 is a valid html color (meaning full red)

But a parser for the most simple form "#RRGGBB" could be done with some regex :

Regex r = new Regex(@"#([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])([0-9a-f][0-9a-f])",
	RegexOptions.Compiled | RegexOptions.IgnoreCase);
Match m = r.Match(colorString);
if (m.Success)
{
	Color c = Color.FromArgb(
		int.Parse(m.Groups[1].Value, System.Globalization.NumberStyles.HexNumber),
		int.Parse(m.Groups[2].Value, System.Globalization.NumberStyles.HexNumber),
		int.Parse(m.Groups[3].Value, System.Globalization.NumberStyles.HexNumber));
}
link|flag
This seems like overkill considering the fact that the method the OP is using already does what they need it to do. – Andrew Hare Jun 11 at 16:27
It doesn't, I need the HEX codes regardless of if is a valid HTML Color. So I need the Hex for White and not 'White'. – Damien Jun 11 at 16:30
That's why i don't have posted a full parser, as i don't know what is exactly required by the OP... he seem to refuse to use color names for some weird reason... And no API that i known do "Color conversion as HTML does but without ever using standard color names" – VirtualBlackFox Jun 11 at 16:31
I need to use the HEX codes in order to set a color in a jQuery plugin. Which uses hex to set value. Sorry shoula mentioned it – Damien Jun 11 at 17:02
vote up 0 vote down

Look into Color.ToARGB()

http://msdn.microsoft.com/en-us/library/system.drawing.color.toargb.aspx

link|flag
vote up 2 vote down

"White" is a valid HTML color. Please see ColorTranslator.ToHtml:

This method translates a Color structure to a string representation of an HTML color. This is the commonly used name of a color, such as "Red", "Blue", or "Green", and not string representation of a numeric color value, such as "FF33AA".

If your color cannot be mapped to a HTML color string this method will return the valid hex for the color. See this example:

using System;
using System.Drawing;

class Program
{
    static void Main()
    {
    	Console.WriteLine(ColorTranslator.ToHtml(Color.White));
    	Console.WriteLine(ColorTranslator.ToHtml(Color.FromArgb(32,67,89)));
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.