主页->库函数目录->绘图环境相关函数->initgraph

功能:
这个函数用于初始化绘图环境。

声明:
void initgraph(
    int Width,
    int Height,
    int Flag = INIT_DEFAULT
);
void initgraph(
    int* gdriver,
    int* gmode,
    char* path
); // 兼容 Borland C++ 3.1 的重载,不建议使用。
参数: Width 绘图环境的宽度。如果为-1,则使用屏幕的宽度 Height 绘图环境的高度。如果为-1,则使用屏幕的高度 Style 请留空,为保留参数 返回值: (无) 示例:
#include "graphics.h"
int main()
{
    initgraph(640, 480);
    circle(200, 200, 100);
    getch();
    cleardevice();
    getch();
    closegraph();
    return 0;
}
Free Web Hosting