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

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?

share|improve this question
2  
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 2 more comments

10 Answers

up vote 165 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");
share|improve this answer
1  
+1, This is exactly what I was looking for!! thanks – viky Jan 22 '10 at 5:03
Care to comment on the downvote? – Thorarin Feb 27 at 21:09

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;
share|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

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.

share|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 '12 at 1:19
+1: very nice to use. Used it in VB.NET: clr = Color.FromArgb(Int32.Parse("FFFFFF00", Globalization.NumberStyles.HexNumber)) – Andrea Antonangeli Oct 7 '12 at 17:20
Color.FromArgb requires a, r, g, and b parameters, not an integer. – citizen conn Nov 30 '12 at 22:41
@citizenconn : msdn.microsoft.com/en-us/library/2zys7833.aspx – Hans Kesting Dec 1 '12 at 10:31
show 1 more comment

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();
share|improve this answer
4  
Maybe a stupid question, and a little late, but why do you use -16777216 for the alpha value? – GeekPeek Mar 26 '12 at 8:49

You can use below code in C#

System.Drawing.Color col = System.Drawing.ColorTranslator.FromHtml("#FFCC66");
share|improve this answer
Many many help me this code... Thanks... – Manoj Savalia Feb 7 at 13:37
Thats been already answered. – nawfal Feb 28 at 8:19

You could use following code:

Color color = System.Drawing.ColorTranslator.FromHtml("#FFDFD991");
share|improve this answer

The three variants below give exactly the same color. The last one has the benefit of being highlighted in VS2010 IDE (maybe its ReSharper that's doing it) with proper color.

var cc1 = System.Drawing.ColorTranslator.FromHtml("#479DEE");

var cc2 = System.Drawing.Color.FromArgb(0x479DEE);

var cc3 = System.Drawing.Color.FromArgb(0x47, 0x9D, 0xEE);
share|improve this answer
System.Drawing.Color.FromArgb(myHashCode);

?

share|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

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.

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

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

for use hex value

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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