El archivo de encabezado graphics.h contiene la función settextstyle() que se usa para cambiar la forma en que aparece el texto. Utilizándolo podemos modificar el tamaño del texto, cambiar la dirección del texto y cambiar la fuente del texto.
Sintaxis:
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).
Ejemplos:
Input : font = 8, direction = 0, font_size = 5 Output :
Input : font = 3, direction = 0, font_size = 5 Output :
La siguiente tabla muestra las fuentes con sus valores INT y apariencia:
A continuación se muestra la implementación de la función settextstyle():
CPP
// C++ implementation for // settextstyle() function #include <graphics.h> // driver code int main() { // gm is Graphics mode which is // a computer display mode that // generates image using pixels. // DETECT is a macro defined in // "graphics.h" header file int gd = DETECT, gm; // initgraph initializes the // graphics system by loading // a graphics driver from disk initgraph(&gd, &gm, ""); // location of text int x = 150; int y = 150; // font style int font = 8; // font direction int direction = 0; // font size int font_size = 5; // for setting text style settextstyle(font, direction, font_size); // for printing text in graphics window outtextxy(x, y, "Geeks For Geeks"); getch(); // closegraph function closes the // graphics mode and deallocates // all memory allocated by graphics // system . closegraph(); return 0; }
Producción:
Publicación traducida automáticamente
Artículo escrito por DevanshuAgarwal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA