我知道如何使用十六进制值获取预定义颜色的名称,但如何获得颜色名称,同时将其Hex值近似为最接近的已知颜色。
答案 0 :(得分:5)
这是基于Ian建议的一些代码。我在一些颜色值上测试了它,似乎效果很好。
GetApproximateColorName(ColorTranslator.FromHtml(source))
private static readonly IEnumerable<PropertyInfo> _colorProperties =
typeof(Color)
.GetProperties(BindingFlags.Public | BindingFlags.Static)
.Where(p => p.PropertyType == typeof (Color));
static string GetApproximateColorName(Color color)
{
int minDistance = int.MaxValue;
string minColor = Color.Black.Name;
foreach (var colorProperty in _colorProperties)
{
var colorPropertyValue = (Color)colorProperty.GetValue(null, null);
if (colorPropertyValue.R == color.R
&& colorPropertyValue.G == color.G
&& colorPropertyValue.B == color.B)
{
return colorPropertyValue.Name;
}
int distance = Math.Abs(colorPropertyValue.R - color.R) +
Math.Abs(colorPropertyValue.G - color.G) +
Math.Abs(colorPropertyValue.B - color.B);
if (distance < minDistance)
{
minDistance = distance;
minColor = colorPropertyValue.Name;
}
}
return minColor;
}
答案 1 :(得分:2)
https://stackoverflow.com/a/7792104/224370解释了如何将命名颜色与精确的RGB值匹配。为了使其近似,您需要某种距离函数来计算颜色之间的距离。在RGB空间中执行此操作(R,G和B值的差异平方和)不会给您一个完美的答案(但可能已经足够好了)。有关以这种方式执行此操作的示例,请参阅https://stackoverflow.com/a/7792111/224370。要获得更精确的答案,您可能需要转换为HSL然后进行比较。