答案 0 :(得分:3)
可以计算出什么颜色 - 例如主导红色+蓝色的东西变成“紫色”,很多“红色”而其他东西不是“红色”,如果它是高水平则是“光”,如果水平是“低”那么它是黑暗的。但是仍然存在大量的颜色组合,并且不是每种可以从HTML颜色组合的16777216颜色都可以称为名称。
如果我们将808080称为“中灰”,那么您所说的818181和7f7f7f几乎完全相同?
(并且“不使用数组”,这可能使得这几乎不可能 - 当然,我们可以制作“代码表”而不是“数组”,例如使用开关或长链if语句,但如果你在这个过程中没有进行任何计算,你只是让编译器为你构建一个表,而不是首先使用数组)
这里有一些命名颜色的代码 - 它远非完美,但它可能会给你一些想法......我试图实现具有一定灵活性的东西。还有其他方法可以实现类似的目标。但这是一个快速的刺,我敢肯定我是否花了几个小时,并有一些有意义的输入数据[我缺乏想象力来提出颜色...]
#include <stdio.h>
#include <string.h>
typedef struct tColourDef
{
int r;
int g;
int b;
const char *colour;
} ColourDef;
// Portion up the colours in 1/8 of the range, 0-7.
static ColourDef baseColours[] =
{
{ 0, 0, 0, "Unknown" },
{ 0, 0, 0, "Black" },
{ 7, 7, 7, "White" },
{ 7, 0, 0, "Red" },
{ 0, 7, 0, "Green" },
{ 0, 0, 7, "Blue" },
{ 7, 7, 0, "Yellow" },
{ 4, 4, 4, "Gray" },
{ 7, 0, 4, "Pink" },
{ 5, 2, 0, "Brown" },
{ 7, 0, 5, "Magenta" },
{ 0, 7, 7, "Cyan" },
{ 4, 0, 4, "Purple" },
{ 7, 3, 0, "Orange" },
{ 4, 0, 0, "Maroon" },
{ 5, 0, 7, "Violet" },
{ 2, 6, 6, "Turqoise" },
};
#define NCOLOURS (sizeof baseColours/sizeof baseColours[0])
inline int iabs(int x)
{
if (x < 0) return -x;
return x;
}
int FindColour(int r, int g, int b, char *buffer, size_t buffer_size)
{
int i;
// Shift colour down...
r >>= 5;
g >>= 5;
b >>= 5;
int smallestError = 5; // Bigger than this, and we say "unknown".
int bestIndex = 0; // Point at "unknown"
for(i = 1; i < NCOLOURS; i++)
{
int error;
error = abs(r - baseColours[i].r) +
abs(b - baseColours[i].b) +
abs(g - baseColours[i].g);
if (error < smallestError && error < 3)
{
smallestError = error;
bestIndex = i;
}
}
strncpy(buffer, baseColours[bestIndex].colour, buffer_size);
return (bestIndex > 0);
}
int main()
{
int testColours[] = { 0xFF0000,
0x00FF00,
0x0000FF,
0x008080,
0x808080,
0x770000,
0xf01780,
0x333333,
};
int i;
for(i = 0; i < sizeof testColours / sizeof testColours[0]; i++)
{
int r = testColours[i] >> 16;
int g = (testColours[i] >> 8) & 0xff;
int b = testColours[i] & 0xff;
char buffer[30];
int res = FindColour(r, g, b, buffer, sizeof(buffer));
printf("%02x:%02x:%02x = %s\n", r, g, b, buffer);
}
return 0;
}
答案 1 :(得分:1)
使用X-Macros:
#include <stdlib.h>
#include <stdio.h>
#define COLORS_RGB \
COLOR_ENTRY(white, 0xffffff) \
COLOR_ENTRY(black, 0x000000) \
COLOR_ENTRY(red, 0xff0000) \
COLOR_ENTRY(green, 0x00ff00) \
COLOR_ENTRY(blue, 0x0000ff)
#define STR(x) #x
char* get_color_name_rgb(unsigned int color) {
switch(color) {
#define COLOR_ENTRY(name,value) case value: return STR(name);
COLORS_RGB
#undef COLOR_ENTRY
default: return "unknown color";
};
}
int main ()
{
unsigned int colors[] = {0xffffff, 0xff0000, 0x00ff00,
0x0000ff, 0x000000, 0x123456};
size_t ncolors = sizeof(colors)/sizeof(*colors);
int i;
for (i = 0; i < ncolors; i++)
printf("value: 0x%06x, name: %s\n",
colors[i], get_color_name_rgb(colors[i]));
}
输出结果为:
$ gcc test.c && ./a.out
value: 0xffffff, name: white
value: 0xff0000, name: red
value: 0x00ff00, name: green
value: 0x0000ff, name: blue
value: 0x000000, name: black
value: 0x123456, name: unknown color