问一下怎么在dev-c++上使用graphics.h
我一步一步按照网上的做了,为什么还是不行代码:#include<graphics.h>#include<conio.h>intmain(){//创建绘图窗口initgra...
我一步一步按照网上的做了,为什么还是不行
代码:
#include <graphics.h>
#include <conio.h>
int main()
{
// 创建绘图窗口
initgraph(640, 480);
// 画渐变的天空(通过亮度逐渐增加)
float H = 190; // 色相
float S = 1; // 饱和度
float L = 0.7f; // 亮度
for(int y = 0; y < 480; y++)
{
L += 0.0005f;
setlinecolor( HSLtoRGB(H, S, L) );
line(0, y, 639, y);
}
// 画彩虹(通过色相逐渐增加)
H = 0;
S = 1;
L = 0.5f;
setlinestyle(PS_SOLID, 2); // 设置线宽为 2
for(int r = 400; r > 344; r--)
{
H += 5;
setlinecolor( HSLtoRGB(H, S, L) );
circle(500, 480, r);
}
// 按任意键退出
getch();
closegraph();
}
错误:
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x26): undefined reference to `initgraph(int, int, int)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x77): undefined reference to `HSLtoRGB(float, float, float)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x7f): undefined reference to `setlinecolor(unsigned long)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0xa3): undefined reference to `line(int, int, int, int)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0xf6): undefined reference to `setlinestyle(int, int, unsigned long const*, unsigned long)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x12c): undefined reference to `HSLtoRGB(float, float, float)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x134): undefined reference to `setlinecolor(unsigned long)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x150): undefined reference to `circle(int, int, int)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x16e): undefined reference to `closegraph()'
C:\Documents and Settings\Administrator\My Documents\collect2.exe [Error] ld returned 1 exit status
对了,不要给我推荐那些VC,我不想用 展开
代码:
#include <graphics.h>
#include <conio.h>
int main()
{
// 创建绘图窗口
initgraph(640, 480);
// 画渐变的天空(通过亮度逐渐增加)
float H = 190; // 色相
float S = 1; // 饱和度
float L = 0.7f; // 亮度
for(int y = 0; y < 480; y++)
{
L += 0.0005f;
setlinecolor( HSLtoRGB(H, S, L) );
line(0, y, 639, y);
}
// 画彩虹(通过色相逐渐增加)
H = 0;
S = 1;
L = 0.5f;
setlinestyle(PS_SOLID, 2); // 设置线宽为 2
for(int r = 400; r > 344; r--)
{
H += 5;
setlinecolor( HSLtoRGB(H, S, L) );
circle(500, 480, r);
}
// 按任意键退出
getch();
closegraph();
}
错误:
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x26): undefined reference to `initgraph(int, int, int)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x77): undefined reference to `HSLtoRGB(float, float, float)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x7f): undefined reference to `setlinecolor(unsigned long)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0xa3): undefined reference to `line(int, int, int, int)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0xf6): undefined reference to `setlinestyle(int, int, unsigned long const*, unsigned long)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x12c): undefined reference to `HSLtoRGB(float, float, float)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x134): undefined reference to `setlinecolor(unsigned long)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x150): undefined reference to `circle(int, int, int)'
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ccs8uIln.o 未命名1.cpp:(.text+0x16e): undefined reference to `closegraph()'
C:\Documents and Settings\Administrator\My Documents\collect2.exe [Error] ld returned 1 exit status
对了,不要给我推荐那些VC,我不想用 展开
1个回答
展开全部
DEV C++不支持graphics.h头函数,而且:不支持不等于不提供
即使你复制进去,也无法连接相关库。
如果的确想用DEV来写可视化、图形化界面,可以使用windows.h,通过调用相关API,可以支持所有图形操作
更多追问追答
追问
我想知道可以调用成功,并且成功运行吗?
追答
windows.h里面的绘图可以调用.
graphics.h里面的绘图无法在DEV中调用
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询