Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to get Color from Hex color code using .NET?

I want to convert a string like #FFFFFF to System.Drawing.Color. How do you do that?

share|improve this question
6  
You must do something about your 0% accept rate. – Nasreddine Aug 28 '12 at 8:58
@Nacereddine: It's exactly their 6th question (when accept rate becomes visible). Most likely they don't know much about accept rates. – Jon Aug 28 '12 at 8:59
@Jon You're probably right. This should help Accepting Answers: How does it work? – Nasreddine Aug 28 '12 at 9:04

marked as duplicate by Jon, freefaller, Nasreddine, KooKiz, Donal Fellows Aug 28 '12 at 10:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 5 down vote accepted
string hex = "#FFFFFF";
Color _color = System.Drawing.ColorTranslator.FromHtml(hex);

Note: the hash is important!

share|improve this answer
Thanks. It works – user1531040 Aug 28 '12 at 9:23
it would be nice if you mark this as your accepted answer on the left. this would be also increase your miserable accept rate. – varg Aug 28 '12 at 9:25

You can do

var color =  System.Drawing.ColorTranslator.FromHtml("#FFFFFF");

Or this (you will need the System.Windows.Media namespace)

var color = (Color)ColorConverter.ConvertFromString("#FFFFFF");
share|improve this answer

remove the '#' and do

Color c = Color.FromArgb(int.Parse("#FFFFFF".Replace("#",""),
                         System.Globalization.NumberStyles.AllowHexSpecifier));
share|improve this answer
There are options available which do no require the conversion to a numeric value, this is an unnecessary step. The OP states it's a string – freefaller Aug 28 '12 at 9:02

Try this:

 System.Drawing.Color myColor = System.Drawing.Color.FromName("#FFFFFF")
share|improve this answer
This will fail - FromName is used with the list of known colour names..‌​. see here – freefaller Aug 28 '12 at 9:00

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