The header file graphics.h contains settextstyle() function which is used to change the way in which text appears. Using it we can modify the size of text, change direction of text and change the font of text.
Syntax :
void settextstyle(int font, int direction, int font_size);
where,
font argument specifies the font of text,
Direction can be HORIZ_DIR (Left to right)
or VERT_DIR (Bottom to top).
Examples :
Input : font = 8, direction = 0, font_size = 5
Output :

Input : font = 3, direction = 0, font_size = 5
Output :

The table below shows the fonts with their INT values and appearance:

Below is the implementation of settextstyle() function :
CPP
#include <graphics.h>
int main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "" );
int x = 150;
int y = 150;
int font = 8;
int direction = 0;
int font_size = 5;
settextstyle(font, direction, font_size);
outtextxy(x, y, "Geeks For Geeks" );
getch();
closegraph();
return 0;
}
|
Output:

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
01 Dec, 2021
Like Article
Save Article