作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我目前正在使用 ncurses 库创建一个程序,但在开始实现颜色时遇到了问题。
当我使用 ncurses 的 start_color() 函数时,默认文本颜色变为灰色(接近#CCC)而不是常规的白色。
我用来比较的代码:
#include <stdlib.h>
#include <string.h>
#include <ncurses.h>
/* Converts a str to a string of chtype. */
chtype* str_to_chtype(char* str) {
int i;
chtype* chstr;
chstr = malloc(sizeof(chtype) * (strlen(str)+1));
for(i = 0; *str; ++str, ++i) {
chstr[i] = (chtype) *str;
}
chstr[i] = 0;
return chstr;
}
int main() {
/* Without color */
initscr();
addchstr(str_to_chtype("Testing"));
getch();
endwin();
/* With color */
initscr();
start_color();
addchstr(str_to_chtype("Testing"));
getch();
endwin();
return 0;
}
图像:
关于为什么会发生这种情况/如何解决它有什么想法吗?
最佳答案
这是一个常见问题解答(参见 Ncurses resets my colors to white/black)。发生的事情是定义 white 和 black 的 8 种 ANSI 颜色不一定与您的默认终端前景和背景颜色匹配。通常选择强度更高的那些。所以 ANSI white 看起来像浅灰色。 (在某些终端上,ANSI black 结果是不同的灰色阴影)。
无论您的终端有 8、16、88、256 种颜色,都会出现此问题,因为您遇到的所有颜色数量较多的终端都遵循 aixterm (16) 或 xterm (88, 256),它们首先使用相同的颜色一组 8 种 ANSI 颜色(黑色是 0 号,白色是 7 号)。
如前所述,use_default_colors是为解决此问题而提供的扩展(不是 X/Open curses 的一部分)。
关于c++ - 为什么 ncurses 的 start_color() 会使常规文本变暗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28859928/
我目前正在使用 ncurses 库创建一个程序,但在开始实现颜色时遇到了问题。 当我使用 ncurses 的 start_color() 函数时,默认文本颜色变为灰色(接近#CCC)而不是常规的白色。
我是一名优秀的程序员,十分优秀!