C语言用graphics.h时怎么加加快贴图速度
1个回答
展开全部
C/C++标准库里面都没有图形绘制的函数,你没有更新这个文件吧,试试下面的代码!如果是DevC++的话:选择工具->检查更新->选择“ConsoleGDI”下载安装。就可以在文件->新建工程->Other->ConsoleGDI,建立和TC一样的图形模式的程序了。
如下代码(按你的要求的例子)可以运行:
#include <winbgim.h>
#include <conio2.h>
int main()
{
initwindow(640,480); //open a 640x480 graphics window
setcolor(WHITE);
circle(320,240,100); //Draw a circle
getch(); //wait for user to press a key
cleardevice();
lineto(20,20);
getch();
moveto(50,50);
lineto(90,90);
getch();
closegraph(); //close graphics window
return 0;
}
如下代码(按你的要求的例子)可以运行:
#include <winbgim.h>
#include <conio2.h>
int main()
{
initwindow(640,480); //open a 640x480 graphics window
setcolor(WHITE);
circle(320,240,100); //Draw a circle
getch(); //wait for user to press a key
cleardevice();
lineto(20,20);
getch();
moveto(50,50);
lineto(90,90);
getch();
closegraph(); //close graphics window
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询