如何在 code::blocks 中更改文本颜色和控制台颜色?
How to change text color and console color in code::blocks?
我正在用C写一个程序,我想改变控制台中的文本颜色和背景颜色。我的示例程序是 -
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <dos.h>
#include <dir.h>
int main(int argc,char *argv[])
{
textcolor(25);
printf("\n \n \t This is dummy program for text color ");
getch();
return 0;
}
当我编译这个程序时 code::blocks 给我一个错误 - 未定义文本颜色。为什么会这样?我在 GNU GCC 编译器和 Windows Vista 中工作。如果它不起作用,文本颜色的副本是什么。就像那样我想改变控制台的背景颜色。编译器给我同样的错误只是函数的名称不同。如何更改控制台和文本的颜色。请帮忙
即使答案是用C++我也没关系。
这是一个在线函数,我用它创建了一个头文件,我用Setcolor();
代替,希望对您有所帮助!您可以通过选择 0-256 范围内的任何颜色来更改颜色。 :) 可悲的是,我相信 CodeBlocks 有更高版本的 window.h 库...
#include <windows.h> //This is the header file for windows.
#include <stdio.h> //C standard library header file
void SetColor(int ForgC);
int main()
{
printf("Test color"); //Here the text color is white
SetColor(30); //Function call to change the text color
printf("Test color"); //Now the text color is green
return 0;
}
void SetColor(int ForgC)
{
WORD wColor;
//This handle is needed to get the current background attribute
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
//csbi is used for wAttributes word
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//To mask out all but the background attribute, and to add the color
wColor = (csbi.wAttributes & 0xF0) + (ForgC & 0x0F);
SetConsoleTextAttribute(hStdOut, wColor);
}
return;
}
你应该先定义函数textcolor。因为 textcolor 不是 C 中的标准函数。
void textcolor(unsigned short color) {
HANDLE hcon = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(hcon,color);
}
textcolor 等函数在 turbo C 和 Dev C 等旧编译器中工作。
在今天的编译器中,这些函数将不起作用。我将给出两个函数 SetColor 和 ChangeConsoleToColors。您将这些函数代码复制粘贴到您的程序中,然后执行以下 steps.The 我提供的代码在某些编译器中不起作用。
SetColor的代码是-
void SetColor(int ForgC)
{
WORD wColor;
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
//We use csbi for the wAttributes word.
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//Mask out all but the background attribute, and add in the forgournd color
wColor = (csbi.wAttributes & 0xF0) + (ForgC & 0x0F);
SetConsoleTextAttribute(hStdOut, wColor);
}
return;
}
要使用此函数,您需要从您的程序中调用它。例如,我正在使用您的示例程序 -
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <dos.h>
#include <dir.h>
int main(void)
{
SetColor(4);
printf("\n \n \t This text is written in Red Color \n ");
getch();
return 0;
}
void SetColor(int ForgC)
{
WORD wColor;
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
//We use csbi for the wAttributes word.
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//Mask out all but the background attribute, and add in the forgournd color
wColor = (csbi.wAttributes & 0xF0) + (ForgC & 0x0F);
SetConsoleTextAttribute(hStdOut, wColor);
}
return;
}
当您 运行 程序时,您将获得红色的文本颜色。现在我要给你每个颜色的代码 -
Name | Value
|
Black | 0
Blue | 1
Green | 2
Cyan | 3
Red | 4
Magenta | 5
Brown | 6
Light Gray | 7
Dark Gray | 8
Light Blue | 9
Light Green | 10
Light Cyan | 11
Light Red | 12
Light Magenta| 13
Yellow | 14
White | 15
下面给出ChangeConsoleToColors的代码。代码是 -
void ClearConsoleToColors(int ForgC, int BackC)
{
WORD wColor = ((BackC & 0x0F) << 4) + (ForgC & 0x0F);
//Get the handle to the current output buffer...
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
//This is used to reset the carat/cursor to the top left.
COORD coord = {0, 0};
//A return value... indicating how many chars were written
// not used but we need to capture this since it will be
// written anyway (passing NULL causes an access violation).
DWORD count;
//This is a structure containing all of the console info
// it is used here to find the size of the console.
CONSOLE_SCREEN_BUFFER_INFO csbi;
//Here we will set the current color
SetConsoleTextAttribute(hStdOut, wColor);
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//This fills the buffer with a given character (in this case 32=space).
FillConsoleOutputCharacter(hStdOut, (TCHAR) 32, csbi.dwSize.X * csbi.dwSize.Y, coord, &count);
FillConsoleOutputAttribute(hStdOut, csbi.wAttributes, csbi.dwSize.X * csbi.dwSize.Y, coord, &count );
//This will set our cursor position for the next print statement.
SetConsoleCursorPosition(hStdOut, coord);
}
return;
}
在此函数中,您传递了两个数字。如果你想要正常的颜色,只需将第一个数字作为零,将第二个数字作为颜色。我的例子是 -
#include <windows.h> //header file for windows
#include <stdio.h>
void ClearConsoleToColors(int ForgC, int BackC);
int main()
{
ClearConsoleToColors(0,15);
Sleep(1000);
return 0;
}
void ClearConsoleToColors(int ForgC, int BackC)
{
WORD wColor = ((BackC & 0x0F) << 4) + (ForgC & 0x0F);
//Get the handle to the current output buffer...
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
//This is used to reset the carat/cursor to the top left.
COORD coord = {0, 0};
//A return value... indicating how many chars were written
// not used but we need to capture this since it will be
// written anyway (passing NULL causes an access violation).
DWORD count;
//This is a structure containing all of the console info
// it is used here to find the size of the console.
CONSOLE_SCREEN_BUFFER_INFO csbi;
//Here we will set the current color
SetConsoleTextAttribute(hStdOut, wColor);
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//This fills the buffer with a given character (in this case 32=space).
FillConsoleOutputCharacter(hStdOut, (TCHAR) 32, csbi.dwSize.X * csbi.dwSize.Y, coord, &count);
FillConsoleOutputAttribute(hStdOut, csbi.wAttributes, csbi.dwSize.X * csbi.dwSize.Y, coord, &count );
//This will set our cursor position for the next print statement.
SetConsoleCursorPosition(hStdOut, coord);
}
return;
}
在这种情况下,我将第一个数字设置为零,将第二个数字设置为 15,因此控制台颜色将为白色,因为白色代码为 15。这在 code::blocks 中对我有用。希望它也适合你。
你也可以使用rlutil:
- 跨平台,
仅 - header (
rlutil.h
),
- 适用于 C 和 C++,
- 实施
setColor()
、cls()
、getch()
、gotoxy()
等
- 许可证:WTFPL
你的代码会变成这样:
#include <stdio.h>
#include "rlutil.h"
int main(int argc, char* argv[])
{
setColor(BLUE);
printf("\n \n \t This is dummy program for text color ");
getch();
return 0;
}
一个简单的方法...
system("Color F0");
字母代表背景颜色,数字代表文本颜色。
0 = 黑色
1 = 蓝色
2 = 绿色
3 = 水色
4 = 红色
5 = 紫色
6 = 黄色
7 = 白色
8 = 灰色
9 = 淡蓝色
A = 浅绿色
B = 淡水绿色
C = 淡红色
D = 浅紫色
E = 淡黄色
F = 亮白色
system("COLOR 0A");
'
其中 0A 是背景和字体颜色的组合
0
最新的编译器不再支持 textcolor
函数。
这是更改代码块中文本颜色的最简单方法。
您可以使用 system
函数。
更改文本颜色:
#include<stdio.h>
#include<stdlib.h> //as system function is in the standard library
int main()
{
system("color 1"); //here 1 represents the text color
printf("This is dummy program for text color");
return 0;
}
如果您想同时更改文本颜色和控制台颜色,您只需在 system
函数中添加另一个颜色代码
更改文本颜色和控制台颜色:
system("color 41"); //here 4 represents the console color and 1 represents the text color
N.B:不要在这些颜色代码之间使用空格
system("color 4 1");
虽然如果你这样做代码块将显示所有颜色代码。您可以使用此技巧了解所有支持的颜色代码。
我知道,我来晚了,但是,也许我的回答可以帮助别人。
基本上它非常简单。
这是我的代码。
#include<iostream>
#include<windows.h>
using namespace std;
int main()
{
HANDLE colors=GetStdHandle(STD_OUTPUT_HANDLE);
string text;
int k;
cout<<" Enter your Text : ";
getline(cin,text);
for(int i=0;i<text.length();i++)
{
k>9 ? k=0 : k++;
if(k==0)
{
SetConsoleTextAttribute(colors,1);
}else
{
SetConsoleTextAttribute(colors,k);
}
cout<<text.at(i);
}
}
输出
This Image will show you how it works
如果您想要完整教程,请在此处观看我的视频:How to change Text color in C++
我正在用C写一个程序,我想改变控制台中的文本颜色和背景颜色。我的示例程序是 -
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <dos.h>
#include <dir.h>
int main(int argc,char *argv[])
{
textcolor(25);
printf("\n \n \t This is dummy program for text color ");
getch();
return 0;
}
当我编译这个程序时 code::blocks 给我一个错误 - 未定义文本颜色。为什么会这样?我在 GNU GCC 编译器和 Windows Vista 中工作。如果它不起作用,文本颜色的副本是什么。就像那样我想改变控制台的背景颜色。编译器给我同样的错误只是函数的名称不同。如何更改控制台和文本的颜色。请帮忙
即使答案是用C++我也没关系。
这是一个在线函数,我用它创建了一个头文件,我用Setcolor();
代替,希望对您有所帮助!您可以通过选择 0-256 范围内的任何颜色来更改颜色。 :) 可悲的是,我相信 CodeBlocks 有更高版本的 window.h 库...
#include <windows.h> //This is the header file for windows.
#include <stdio.h> //C standard library header file
void SetColor(int ForgC);
int main()
{
printf("Test color"); //Here the text color is white
SetColor(30); //Function call to change the text color
printf("Test color"); //Now the text color is green
return 0;
}
void SetColor(int ForgC)
{
WORD wColor;
//This handle is needed to get the current background attribute
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
//csbi is used for wAttributes word
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//To mask out all but the background attribute, and to add the color
wColor = (csbi.wAttributes & 0xF0) + (ForgC & 0x0F);
SetConsoleTextAttribute(hStdOut, wColor);
}
return;
}
你应该先定义函数textcolor。因为 textcolor 不是 C 中的标准函数。
void textcolor(unsigned short color) {
HANDLE hcon = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(hcon,color);
}
textcolor 等函数在 turbo C 和 Dev C 等旧编译器中工作。 在今天的编译器中,这些函数将不起作用。我将给出两个函数 SetColor 和 ChangeConsoleToColors。您将这些函数代码复制粘贴到您的程序中,然后执行以下 steps.The 我提供的代码在某些编译器中不起作用。
SetColor的代码是-
void SetColor(int ForgC)
{
WORD wColor;
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
//We use csbi for the wAttributes word.
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//Mask out all but the background attribute, and add in the forgournd color
wColor = (csbi.wAttributes & 0xF0) + (ForgC & 0x0F);
SetConsoleTextAttribute(hStdOut, wColor);
}
return;
}
要使用此函数,您需要从您的程序中调用它。例如,我正在使用您的示例程序 -
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <dos.h>
#include <dir.h>
int main(void)
{
SetColor(4);
printf("\n \n \t This text is written in Red Color \n ");
getch();
return 0;
}
void SetColor(int ForgC)
{
WORD wColor;
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
//We use csbi for the wAttributes word.
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//Mask out all but the background attribute, and add in the forgournd color
wColor = (csbi.wAttributes & 0xF0) + (ForgC & 0x0F);
SetConsoleTextAttribute(hStdOut, wColor);
}
return;
}
当您 运行 程序时,您将获得红色的文本颜色。现在我要给你每个颜色的代码 -
Name | Value
|
Black | 0
Blue | 1
Green | 2
Cyan | 3
Red | 4
Magenta | 5
Brown | 6
Light Gray | 7
Dark Gray | 8
Light Blue | 9
Light Green | 10
Light Cyan | 11
Light Red | 12
Light Magenta| 13
Yellow | 14
White | 15
下面给出ChangeConsoleToColors的代码。代码是 -
void ClearConsoleToColors(int ForgC, int BackC)
{
WORD wColor = ((BackC & 0x0F) << 4) + (ForgC & 0x0F);
//Get the handle to the current output buffer...
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
//This is used to reset the carat/cursor to the top left.
COORD coord = {0, 0};
//A return value... indicating how many chars were written
// not used but we need to capture this since it will be
// written anyway (passing NULL causes an access violation).
DWORD count;
//This is a structure containing all of the console info
// it is used here to find the size of the console.
CONSOLE_SCREEN_BUFFER_INFO csbi;
//Here we will set the current color
SetConsoleTextAttribute(hStdOut, wColor);
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//This fills the buffer with a given character (in this case 32=space).
FillConsoleOutputCharacter(hStdOut, (TCHAR) 32, csbi.dwSize.X * csbi.dwSize.Y, coord, &count);
FillConsoleOutputAttribute(hStdOut, csbi.wAttributes, csbi.dwSize.X * csbi.dwSize.Y, coord, &count );
//This will set our cursor position for the next print statement.
SetConsoleCursorPosition(hStdOut, coord);
}
return;
}
在此函数中,您传递了两个数字。如果你想要正常的颜色,只需将第一个数字作为零,将第二个数字作为颜色。我的例子是 -
#include <windows.h> //header file for windows
#include <stdio.h>
void ClearConsoleToColors(int ForgC, int BackC);
int main()
{
ClearConsoleToColors(0,15);
Sleep(1000);
return 0;
}
void ClearConsoleToColors(int ForgC, int BackC)
{
WORD wColor = ((BackC & 0x0F) << 4) + (ForgC & 0x0F);
//Get the handle to the current output buffer...
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
//This is used to reset the carat/cursor to the top left.
COORD coord = {0, 0};
//A return value... indicating how many chars were written
// not used but we need to capture this since it will be
// written anyway (passing NULL causes an access violation).
DWORD count;
//This is a structure containing all of the console info
// it is used here to find the size of the console.
CONSOLE_SCREEN_BUFFER_INFO csbi;
//Here we will set the current color
SetConsoleTextAttribute(hStdOut, wColor);
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//This fills the buffer with a given character (in this case 32=space).
FillConsoleOutputCharacter(hStdOut, (TCHAR) 32, csbi.dwSize.X * csbi.dwSize.Y, coord, &count);
FillConsoleOutputAttribute(hStdOut, csbi.wAttributes, csbi.dwSize.X * csbi.dwSize.Y, coord, &count );
//This will set our cursor position for the next print statement.
SetConsoleCursorPosition(hStdOut, coord);
}
return;
}
在这种情况下,我将第一个数字设置为零,将第二个数字设置为 15,因此控制台颜色将为白色,因为白色代码为 15。这在 code::blocks 中对我有用。希望它也适合你。
你也可以使用rlutil:
- 跨平台, 仅
- header (
rlutil.h
), - 适用于 C 和 C++,
- 实施
setColor()
、cls()
、getch()
、gotoxy()
等 - 许可证:WTFPL
你的代码会变成这样:
#include <stdio.h>
#include "rlutil.h"
int main(int argc, char* argv[])
{
setColor(BLUE);
printf("\n \n \t This is dummy program for text color ");
getch();
return 0;
}
一个简单的方法...
system("Color F0");
字母代表背景颜色,数字代表文本颜色。
0 = 黑色
1 = 蓝色
2 = 绿色
3 = 水色
4 = 红色
5 = 紫色
6 = 黄色
7 = 白色
8 = 灰色
9 = 淡蓝色
A = 浅绿色
B = 淡水绿色
C = 淡红色
D = 浅紫色
E = 淡黄色
F = 亮白色
system("COLOR 0A");
'
其中 0A 是背景和字体颜色的组合 0
textcolor
函数。
这是更改代码块中文本颜色的最简单方法。
您可以使用 system
函数。
更改文本颜色:
#include<stdio.h>
#include<stdlib.h> //as system function is in the standard library
int main()
{
system("color 1"); //here 1 represents the text color
printf("This is dummy program for text color");
return 0;
}
如果您想同时更改文本颜色和控制台颜色,您只需在 system
函数中添加另一个颜色代码
更改文本颜色和控制台颜色:
system("color 41"); //here 4 represents the console color and 1 represents the text color
N.B:不要在这些颜色代码之间使用空格
system("color 4 1");
虽然如果你这样做代码块将显示所有颜色代码。您可以使用此技巧了解所有支持的颜色代码。
我知道,我来晚了,但是,也许我的回答可以帮助别人。 基本上它非常简单。 这是我的代码。
#include<iostream>
#include<windows.h>
using namespace std;
int main()
{
HANDLE colors=GetStdHandle(STD_OUTPUT_HANDLE);
string text;
int k;
cout<<" Enter your Text : ";
getline(cin,text);
for(int i=0;i<text.length();i++)
{
k>9 ? k=0 : k++;
if(k==0)
{
SetConsoleTextAttribute(colors,1);
}else
{
SetConsoleTextAttribute(colors,k);
}
cout<<text.at(i);
}
}
输出
This Image will show you how it works
如果您想要完整教程,请在此处观看我的视频:How to change Text color in C++