How can I get Color from a Hex color code(e.g. #FFDFD991)?

I am reading a file and getting Hex color code, I need to create the corresponding System.Windows.Media.Color instance for the Hex color code. Is there any inbuilt method in framework to do this?

link|improve this question

1  
By hash code maybe they mean #00ff00? – Mark Byers Jan 21 '10 at 14:10
@Mark - That's my interpretation – Oded Jan 21 '10 at 14:11
1  
Same as you can't reconstruct a password from its hash, you can't reconstruct a color from its hash. You would reverse entropy if you did. ;-) – herzmeister Jan 21 '10 at 14:14
3  
Viky - don't refer to that as hash code. It's confusing. ;-) It's the hexadecimal representation of a color. – Wim Hollebrandse Jan 21 '10 at 14:15
2  
#FF0000 is an HTML (or hexadecimal) color code, not a hash code. Please learn the difference. – SLaks Jan 21 '10 at 14:15
show 1 more comment
feedback

8 Answers

up vote 78 down vote accepted

I'm assuming that's an ARGB code... Are you referring to System.Drawing.Color or System.Windows.Media.Color? The latter is used in WPF for example. I haven't seen anyone mention it yet, so just in case you were looking for it:

using System.Windows.Media;

Color color = (Color)ColorConverter.ConvertFromString("#FFDFD991");
link|improve this answer
1  
+1, This is exactly what I was looking for!! thanks – viky Jan 22 '10 at 5:03
feedback

Assuming you mean the HTML type RGB codes (called Hex codes, such as #FFCC66), use the ColorTranslator class:

System.Drawing.Color col = System.Drawing.ColorTranslator.FromHtml("#FFCC66");

If, however you are using an ARGB hex code, you can use the ColorConverter class from the System.Windows.Media namespace:

Color col = ColorConverter.ConvertFromString("#FFDFD991") as Color;
link|improve this answer
The example code shows 8 hex digits, so this would likely make it ARGB type. In any case: not a HTML color code. – Thorarin Jan 21 '10 at 14:16
1  
@Thorarin: The example was added after Oded's answer and is likely to be something random OP just typed out. – Mehrdad Afshari Jan 21 '10 at 14:16
Doesn't look random to me, the alpha channel is fully opaque for example, which is fairly common and not-random :) Also, SO didn't show any revisions on the question when I posted this. – Thorarin Jan 21 '10 at 14:36
@Thorarin: SO merges all revisions by a single user in a 5 minute time frame. If you edit your post in 5 minutes, it'll show up as a single revision. It's confusing sometimes. – Mehrdad Afshari Jan 21 '10 at 14:49
I am using System.Windows.Media.Color – viky Jan 22 '10 at 5:04
show 3 more comments
feedback

If you don't want to use the ColorTranslator, you can do it in easily:

string colorcode = "#FFFFFF00";
int argb = Int32.Parse(colorcode.Replace("#", ""), NumberStyles.HexNumber);
Color clr = Color.FromArgb(argb);

The colorcode is just the hexadecimal representation of the argb value.

link|improve this answer
i thought you said easy... – Mike Nov 19 '11 at 23:33
Great solution for those using Visual C# Express since it only requires System.Globalization. – marshall.ward Mar 11 at 1:19
feedback

There is also this neat little extension method:

static class ExtensionMethods
{
    public static Color ToColor(this uint argb)
    {
        return Color.FromArgb((byte)((argb & -16777216)>> 0x18),      
                              (byte)((argb & 0xff0000)>> 0x10),   
                              (byte)((argb & 0xff00) >> 8),
                              (byte)(argb & 0xff));
    }
}

In use:

Color color = 0xFFDFD991.ToColor();
link|improve this answer
Maybe a stupid question, and a little late, but why do you use -16777216 for the alpha value? – GeekPeek Mar 26 at 8:49
feedback

You could use following code:

Color color = System.Drawing.ColorTranslator.FromHtml("#FFDFD991");
link|improve this answer
feedback
System.Drawing.Color.FromArgb(myHashCode);

?

link|improve this answer
Glances over the conversion from hex string to int? – Thorarin Jan 21 '10 at 14:40
Originally the question was asked as "How to get a color from a hash code" which created a lot of confusion in here. ;-) – herzmeister Jan 21 '10 at 15:01
feedback

If you mean HashCode as in .GetHashCode(), I'm afraid you can't go back. Hash functions are not bi-directional, you can go 'forward' only, not back.

Edit: Follow Oded's suggestion if you need to get the color based on the hexadecimal value of the color.

link|improve this answer
I have corrected my question – viky Jan 21 '10 at 14:30
feedback

you can see this ::: http://stackoverflow.com/a/10378228/1363514

for use hex value

your_contorl.Color = DirectCast(ColorConverter.ConvertFromString("#D8E0A627"), Color)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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