eg_getfi.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 19 行
C
19 行
#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 + =
减小字号Ctrl + -
显示快捷键?