📄 eg_getfi.c
字号:
#include <conio.h>
#include <graph.h>
main()
{
int width;
struct _fontinfo info;
_setvideomode( _VRES16COLOR );
_getfontinfo( &info );
_moveto( 100, 100 );
_outgtext( "WATCOM Graphics" );
width = _getgtextextent( "WATCOM Graphics" );
_rectangle( _GBORDER, 100, 100,
100 + width, 100 + info.pixheight );
getch();
_setvideomode( _DEFAULTMODE );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -