从控制台C ++应用程序将stdout输出着色到Windows cmd.exe

时间:2011-10-15 14:24:32

标签: c++ windows console-application windows-console

我想写类似于

的内容
cout << "this text is not colorized\n";
setForeground(Color::Red);
cout << "this text shows as red\n";
setForeground(Color::Blue);
cout << "this text shows as blue\n";

在Windows 7下运行的C ++控制台程序。我已经读过全局前景&amp;可以从cmd.exe的设置更改后台,或者通过调用system()来更改背景 - 但有没有办法在字符级别更改可以编码为程序的内容?起初我认为“ANSI序列”,但它们似乎在Windows领域中长期丢失。

2 个答案:

答案 0 :(得分:9)

您可以使用SetConsoleTextAttribute功能:

BOOL WINAPI SetConsoleTextAttribute(
  __in  HANDLE hConsoleOutput,
  __in  WORD wAttributes
);

这是一个简短的例子,你可以看看。

#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <winnt.h>
#include <stdio.h>
using namespace std;

int main(int argc, char* argv[])
{
   HANDLE consolehwnd = GetStdHandle(STD_OUTPUT_HANDLE);
   cout << "this text is not colorized\n";
   SetConsoleTextAttribute(consolehwnd, FOREGROUND_RED);
   cout << "this text shows as red\n";
   SetConsoleTextAttribute(consolehwnd, FOREGROUND_BLUE);
   cout << "this text shows as blue\n";
}

此函数影响函数调用后写入的文本。所以最后你可能想要恢复原始的颜色/属性。您可以使用GetConsoleScreenBufferInfo在开头记录初始颜色,并在结尾处执行重置{/ 1}}。

答案 1 :(得分:1)