如何为给定的字符串生成“随机常量颜色”?

问题描述 投票:0回答:4

如何在运行时为给定字符串生成“随机常量颜色”?

因此给定的字符串值将始终具有相同的颜色,但不同的字符串将具有不同的颜色。

就像 gmail 如何为发件人姓名分配颜色一样。

谢谢

评论回复:

  1. 考虑从哈希码生成颜色。
  2. 颜色不会被存储,而是从哈希码生成。
c# wpf
4个回答
11
投票

我不知道有什么专用方法,但这里有一个简单的方法,根据给定的字符串使用 MD5 生成十六进制值:

using System.Security.Cryptography;
using System.Text;


static string GetColor(string raw)
{
    using (MD5 md5Hash = MD5.Create())
    {
        byte[] data = md5Hash.ComputeHash(Encoding.UTF8.GetBytes(raw));
        return BitConverter.ToString(data).Replace("-", string.Empty).Substring(0, 6);
    }
}

示例:

  1. [电子邮件受保护]

    -> 23463B

  2. [电子邮件受保护]

    -> 3C9015

  3. [电子邮件受保护]

    -> 7CA5E8

编辑:

我没有对其进行足够的测试,因此您可能需要稍微调整它以获得更多不同和独特的值。

编辑2:

如果您想要透明度,请查看this问题/答案。通过将

Substring
设置为
Substring(0,8)
,您应该返回带有 alpha 通道的字符串。


2
投票

与其他答案的建议类似(以某种形式散列字符串,然后使用该散列来选择颜色),但不要使用散列直接计算颜色,而是将其用作“可接受”颜色数组的索引.

class ColorPicker
{
    public ColorPicker(int colorCount)
    {
        //The ".Skip(2)" makes it skip pure white and pure black.
        // If you want those two, take out the +2 and the skip.
        _colors = ColorGenerator.Generate(colorCount + 2).Skip(2).ToArray();
    }
    private readonly Color[] _colors;
    
    public Color StringToColor(string message)
    {
        int someHash = CalculateHashOfStringSomehow(message);
        return _colors[someHash % _colors.Length];
    }

    private int CalculateHashOfStringSomehow(string message)
    {
        //TODO: I would not use "message.GetHashCode()" as you are not
        // guaranteed the same value between runs of the program.
        // Make up your own algorithom or use a existing one that has a fixed 
        // output for a given input, like MD5.
    }
}

这可以防止当您计划显示白色背景的文本时出现白色等问题以及其他类似问题。

要填充您的

Color[]
,请参阅ColorGenerator类的
这个答案
,或者只是制作您自己的预定义颜色列表,这些颜色在任何背景上看起来都很好。


附录:
如果链接断开,这里是

ColorGenerator
类的副本

public static class ColorGenerator
{

    // RYB color space
    private static class RYB
    {
        private static readonly double[] White = { 1, 1, 1 };
        private static readonly double[] Red = { 1, 0, 0 };
        private static readonly double[] Yellow = { 1, 1, 0 };
        private static readonly double[] Blue = { 0.163, 0.373, 0.6 };
        private static readonly double[] Violet = { 0.5, 0, 0.5 };
        private static readonly double[] Green = { 0, 0.66, 0.2 };
        private static readonly double[] Orange = { 1, 0.5, 0 };
        private static readonly double[] Black = { 0.2, 0.094, 0.0 };

        public static double[] ToRgb(double r, double y, double b)
        {
            var rgb = new double[3];
            for (int i = 0; i < 3; i++)
            {
                rgb[i] = White[i]  * (1.0 - r) * (1.0 - b) * (1.0 - y) +
                         Red[i]    * r         * (1.0 - b) * (1.0 - y) +
                         Blue[i]   * (1.0 - r) * b         * (1.0 - y) +
                         Violet[i] * r         * b         * (1.0 - y) +
                         Yellow[i] * (1.0 - r) * (1.0 - b) *        y +
                         Orange[i] * r         * (1.0 - b) *        y +
                         Green[i]  * (1.0 - r) * b         *        y +
                         Black[i]  * r         * b         *        y;
            }

            return rgb;
        }
    }

    private class Points : IEnumerable<double[]>
    {
        private readonly int pointsCount;
        private double[] picked;
        private int pickedCount;

        private readonly List<double[]> points = new List<double[]>();

        public Points(int count)
        {
            pointsCount = count;
        }

        private void Generate()
        {
            points.Clear();
            var numBase = (int)Math.Ceiling(Math.Pow(pointsCount, 1.0 / 3.0));
            var ceil = (int)Math.Pow(numBase, 3.0);
            for (int i = 0; i < ceil; i++)
            {
                points.Add(new[]
                {
                    Math.Floor(i/(double)(numBase*numBase))/ (numBase - 1.0),
                    Math.Floor((i/(double)numBase) % numBase)/ (numBase - 1.0),
                    Math.Floor((double)(i % numBase))/ (numBase - 1.0),
                });
            }
        }

        private double Distance(double[] p1)
        {
            double distance = 0;
            for (int i = 0; i < 3; i++)
            {
                distance += Math.Pow(p1[i] - picked[i], 2.0);
            }

            return distance;
        }

        private double[] Pick()
        {
            if (picked == null)
            {
                picked = points[0];
                points.RemoveAt(0);
                pickedCount = 1;
                return picked;
            }

            var d1 = Distance(points[0]);
            int i1 = 0, i2 = 0;
            foreach (var point in points)
            {
                var d2 = Distance(point);
                if (d1 < d2)
                {
                    i1 = i2;
                    d1 = d2;
                }

                i2 += 1;
            }

            var pick = points[i1];
            points.RemoveAt(i1);

            for (int i = 0; i < 3; i++)
            {
                picked[i] = (pickedCount * picked[i] + pick[i]) / (pickedCount + 1.0);
            }

            pickedCount += 1;
            return pick;
        }

        public IEnumerator<double[]> GetEnumerator()
        {
            Generate();
            for (int i = 0; i < pointsCount; i++)
            {
                yield return Pick();
            }
        }

        IEnumerator IEnumerable.GetEnumerator()
        {
            return GetEnumerator();
        }
    }

    public static IEnumerable<Color> Generate(int numOfColors)
    {
        var points = new Points(numOfColors);

        foreach (var point in points)
        {
            var rgb = RYB.ToRgb(point[0], point[1], point[2]);
            yield return Color.FromArgb(
                (int)Math.Floor(255 * rgb[0]),
                (int)Math.Floor(255 * rgb[1]),
                (int)Math.Floor(255 * rgb[2]));
        }
    }
}

原始论文的回溯链接:https://web.archive.org/web/20150318233155/http://thirdkings.tk:80/mirror/ryb_TR.pdf


0
投票

3 个整数变量,r、g 和 b。

按步骤 3 循环遍历字符串中的每个字符并添加字符代码。

r += n + 0
g += n + 1
b += n + 2

循环结束后,对 r、g 和 b 取模 255,并使用

Color.FromARGB
创建颜色。

但不能保证颜色会很漂亮,并且某些字符串的颜色可能碰巧彼此非常接近。


0
投票

我看到了一些非常好的答案,但尽管它应该提供一些有趣的解决方案来从字符串生成颜色,但哈希版本看起来是最好的方法,但如果这给任何人一些灵感,那就试试吧

        ConsoleKeyInfo ch = new ConsoleKeyInfo();
        while (ch.KeyChar != 'e')
        {
            Console.WriteLine("type string to seed color");
            string s = Console.ReadLine(); // gets text from input, in this case the command line
            double d=0;
            foreach(char cha in s.ToCharArray())
            {
                d=+ (int)cha; // get the value and adds it 
            }
            d= (255/(Math.Pow(0.2,-0.002 *d))); // Generates a seed like value from i where 255 is the maximum. basicly 255/0.2^(-0.002*d)

            int i = Convert.ToInt32(d); //then convets and get rid of the decimels
            Color c = Color.FromArgb(i, i, i);// add a bit more calculation for varieng colers.
            Console.WriteLine(c.Name);
            Console.WriteLine("To Exit press e");
            ch = Console.ReadKey()
       }

编辑1:它绝对需要一些调整,因为绳子越长,颜色越浅,但我认为只需做一点工作就可以从中得到一些东西:)

© www.soinside.com 2019 - 2024. All rights reserved.