I need to generate random color names e.g. "Red", "White" etc. How can I do it? I am able to generate random color like this:

Random randonGen = new Random();
Color randomColor = Color.FromArgb(randonGen.Next(255), randonGen.Next(255), 
randonGen.Next(255));

but I need the names and not all colors generated like this have a known name.

Thanks

link|improve this question

75% accept rate
Not every color will have a name. They are too many. Do you want a "best guess" color name? If that's the case, how would you call a color which is exactly in the middle of blue and green? – Adrian Apr 27 '11 at 14:35
feedback

9 Answers

up vote 9 down vote accepted

Use Enum.GetValue to retrieve the values of the KnownColor enumeration and get a random value:

KnownColor[] names = (KnownColor[]) Enum.GetValues(typeof(KnownColor));
KnownColor randomColorName = names[randomGen.Next(names.Length)];
Color randomColor = Color.FromKnownColor(randomColorName);
link|improve this answer
feedback

Take a random value and get from KnownColor enum.

May be by this way:

System.Array colorsArray = Enum.GetValues(typeof(KnownColor));
KnownColor[] allColors = new KnownColor[colorsArray.Length];

Array.Copy(colorsArray, allColors, colorsArray.Length);
// get a randon position from the allColors and print its name.
link|improve this answer
3  
Copying the array is redundant. – Konrad Rudolph Apr 27 '11 at 14:39
Ideed, it just make a randon from the KnowColor, sorry :-) – Pih Apr 27 '11 at 14:42
feedback

Sounds like you just need a random color from the KnownColor enumeration.

link|improve this answer
feedback

Ignore the fact that you're after colors - you really just want a list of possible values, and then take a random value from that list.

The only tricky bit then is working out which set of colors you're after. As Pih mentioned, there's KnownColor - or you could find out all the public static properties of type Color within the Color structure, and get their names. It depends on what you're trying to do.

Note that randomness itself can be a little bit awkward - if you're selecting multiple random colors, you probably want to use a single instance of Random`. Unfortunately it's not thread-safe, which makes things potentially even more complicated. See my article on randomness for more information.

link|improve this answer
feedback

I would build a lookup table. Especially since some colors are up to personal interpretation.

Go through each color value in the Color struct ( http://msdn.microsoft.com/en-us/library/system.drawing.color.aspx ) and map it to the RGB values. Then to convert back, lookup the RGB value to see if it has a named color.

link|improve this answer
feedback

Copied code from Retrieve a list of colors in C#

CODE:

private List<string> GetColors()
{
    //create a generic list of strings
    List<string> colors = new List<string>();
    //get the color names from the Known color enum
    string[] colorNames = Enum.GetNames(typeof(KnownColor));
    //iterate thru each string in the colorNames array
    foreach (string colorName in colorNames)
    {
        //cast the colorName into a KnownColor
        KnownColor knownColor = (KnownColor)Enum.Parse(typeof(KnownColor), colorName);
        //check if the knownColor variable is a System color
        if (knownColor > KnownColor.Transparent)
        {
            //add it to our list
            colors.Add(colorName);
        }
    }
    //return the color list
    return colors;
}
link|improve this answer
feedback

Put the colors into an array and then choose a random index:

class RandomColorSelector
{
    static readonly Color[] Colors = 
        typeof(Color).GetProperties(BindingFlags.Public | BindingFlags.Static)
       .Select(propInfo => propInfo.GetValue(null, null))
       .Cast<Color>()
       .ToArray();

    static readonly string[] ColorNames =  
        typeof(Color).GetProperties(BindingFlags.Public | BindingFlags.Static)
        .Select(propInfo => propInfo.Name)
        .ToArray();

    private Random rand = new Random();

    static void Main(string[] args)
    {
        var colorSelector = new RandomColorSelector();
        var color = colorSelector.GetRandomColor();

        // in case you are only after the *name*
        var colorName = colorSelector.GetRandomColorName();            
    }

    public Color GetRandomColor()
    {
        return Colors[rand.Next(0, Colors.Length)];
    }

    public string GetRandomColorName()
    {
        return ColorNames[rand.Next(0, Colors.Length)];
    }
}

Note that the sample above simply looks up all static properties of the Color type. You might want to improve this by checking that the actual return type of the property is a Color.

link|improve this answer
Note that in general, using a static variable for Random is a bad idea, as it's not thread-safe. – Jon Skeet Apr 27 '11 at 14:40
@Jon Skeet: Thanks a lot for the hint, I updated my sample. – 0xA3 Apr 27 '11 at 14:59
feedback

There is no way to Randomize an Enumeration, as you want to do, the most suitable solution would pass by setting a List with all the values of the colors, then obtain an integer randomizing it and use it as the index of the list.

link|improve this answer
feedback

generate a random number and cast it to KnownColor Type

((KnownColor)Random.Next());
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.