在Windows中使用C ++的颜色控制台输出

时间:2012-02-13 14:35:43

标签: c++ visual-studio-2010 windows-console

有没有办法将彩色文本输出到控制台? 我使用的是Visual Studio 2010,只需要在Windows中使用该代码。

我找不到除了Windows COLOR命令之外的任何东西都没有成功,但是它改变了整个屏幕的颜色,我正在寻找一些只会改变我希望输出的部分的东西。 我已经在托管C ++中看到它完成了

,例如,

{color red}
cout << "Hello ";
{color blue}
cout << "world\n";

会产生红色和蓝色的“Hello world”。

4 个答案:

答案 0 :(得分:24)

我从here获取此代码:

// color your text in Windows console mode
// colors are 0=black 1=blue 2=green and so on to 15=white
// colorattribute = foreground + background * 16
// to get red text on yellow use 4 + 14*16 = 228
// light red on yellow would be 12 + 14*16 = 236
// a Dev-C++ tested console application by vegaseat 07nov2004

#include <iostream>
#include <windows.h> // WinApi header

using namespace std; // std::cout, std::cin

int main()
{
HANDLE hConsole;
int k;

hConsole = GetStdHandle(STD_OUTPUT_HANDLE);

// you can loop k higher to see more color choices
for(k = 1; k < 255; k++)
{
// pick the colorattribute k you want
SetConsoleTextAttribute(hConsole, k);
cout << k << " I want to be nice today!" << endl;
}

cin.get(); // wait
return 0;
}

答案 1 :(得分:3)

Windows中的着色C ++输出是通过SetConsoleTextAttribute完成的,其中控制台的HANDLE与属性一起传入。但是,调用SetConsoleTextAttribute非常麻烦。幸运的是,互联网和github上有很多小型库可以提供帮助,你应该选择一个你喜欢的API。如果您想使用运算符&lt;&lt;更改颜色,我建议使用此仅限标题的库https://github.com/ikalnitsky/termcolor。 api看起来像这样:

using namespace termcolor;
std::cout << grey    << "grey message"    << reset << std::endl;
std::cout << red     << "red message"     << reset << std::endl;

如果必须重置颜色会让您失望,请尝试使用我的库。它也是标题,仅限Windows,它可以让您轻松地为printf语句着色:https://github.com/jrebacz/colorwin。 api看起来像这样:

using namepsace wincolor;
std::cout << color(gray) << "grey message\n";
std::cout << color(red) << "red message\n";

std::cout << "normal color\n";
{
    withcolor scoped(red);
    std::cout << "|red\n";
    std::cout << "|red again\n";
}
std::cout << "normal color\n";
withcolor(cyan).printf("A cyan printf of %d\n", 1234);

答案 2 :(得分:1)

这是我们的内部解决方案:

inline void setcolor(int textcol, int backcol)
{
    if ((textcol % 16) == (backcol % 16))textcol++;
    textcol %= 16; backcol %= 16;
    unsigned short wAttributes = ((unsigned)backcol << 4) | (unsigned)textcol;
    HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
    CONSOLE_SCREEN_BUFFER_INFO csbi;
    SetConsoleTextAttribute(hStdOut, wAttributes);
}

以下是可供选择的颜色示例:

#define LOG_COLOR_WHITE 7
#define COLOR_GREEN 10
#define COLOR_YELLOW 14 
#define COLOR_MAGENTA 13

答案 3 :(得分:-3)

您可以使用system(“”)命令,该命令使用如下:

cout<<"lol";
system("color 1") // the colours are from 1 to 15. 
cout<<"Coloured text! yay";