MingW 的图形
我正在使用 Windows 7 和 MingW 来编译我编写的 C 程序。我希望学习如何在 C 编程中绘制直线、圆弧、圆(图形)。我指的书使用了turboC的graphics.h和graphics.lib。但我有mingW。如何获取 MingW 的头文件和库文件?
I am using Windows 7 and MingW for compiling c programs that I write.. I wish to learn how to draw lines, arc, circles (graphics) in C - programming. the book I am referring to uses graphics.h and graphics.lib of turboC. But I have mingW. how do I get the header and library files for MingW?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mingw本身没有图形库,但Windows有。
您可以查看Windows API,它也可以在Visual Studio 中使用。 API提供了这样的功能。 这里是众多教程之一,其中
Ellipse
使用函数。Mingw itself doesn't have a graphics library, but Windows does.
What you can look into is the Windows API, which can also be used in Visual Studio. The API provides such functions. Here is one of many tutorials, where among others the
Ellipse
function is used.