'How to use graphics.h in codeblocks?
I have recently started learning graphics in C++.
I tried #include <graphics.h> in my program in codeblocks but it shows error. Then I downloaded graphics.h header from a site and pasted in the include folder in codeblocks, yet it shows graphics.h:No such file or directory.
Can anyone teach me how to use graphics.h in codeblocks?
Solution 1:[1]
- First download WinBGIm from http://winbgim.codecutter.org/ Extract it.
- Copy
graphics.handwinbgim.hfiles in include folder of your compiler directory - Copy
libbgi.ato lib folder of your compiler directory - In code::blocks open Settings >> Compiler and debugger >>linker settings
click Add button in link libraries part and browse and select
libbgi.afile - In right part (i.e. other linker options) paste commands
-lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32 - Click OK
For detail information follow this link.
Solution 2:[2]
AFAIK, in the epic DOS era there is a header file named graphics.h shipped with Borland Turbo C++ suite. If it is true, then you are out of luck because we're now in Windows era.
Solution 3:[3]
You don't only need the header file, you need the library that goes with it. Anyway, the include folder is not automatically loaded, you must configure your project to do so. Right-click on it : Build options > Search directories > Add. Choose your include folder, keep the path relative.
Edit For further assistance, please give details about the library you're trying to load (which provides a graphics.h file.)
Solution 4:[4]
- Open the file graphics.h using either of Sublime Text Editor or
Notepad++,from the
includefolder where you have installed Codeblocks. - Goto line no 302
- Delete the line and paste
int left=0, int top=0, int right=INT_MAX, int bottom=INT_MAX,in that line. - Save the file and start Coding.
Solution 5:[5]
If you want to use Codeblocks and Graphics.h,you can use Codeblocks-EP(I used it when I was learning C in college) then you can try
Codeblocks-EP http://codeblocks.codecutter.org/
In Codeblocks-EP , [File]->[New]->[Project]->[WinBGIm Project]
It has templates for WinBGIm projects installed and all the necessary libraries pre-installed.
OR try this https://stackoverflow.com/a/20321173/5227589
Solution 6:[6]
It is a tradition to use Turbo C for graphic in C/C++. But it’s also a pain in the neck. We are using Code::Blocks IDE, which will ease out our work.
Steps to run graphics code in CodeBlocks:
- Install Code::Blocks
- Download the required header files
- Include graphics.h and winbgim.h
- Include libbgi.a
- Add Link Libraries in Linker Setting
- include graphics.h and Save code in cpp extension
To test the setting copy paste run following code:
#include <graphics.h>
int main( )
{
initwindow(400, 300, "First Sample");
circle(100, 50, 40);
while (!kbhit( ))
{
delay(200);
}
return 0;
}
Here is a complete setup instruction for Code::Blocks
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | frogatto |
| Solution 2 | nim |
| Solution 3 | |
| Solution 4 | Lucas Zamboulis |
| Solution 5 | Mukesh M |
| Solution 6 | alkesh Miyani |

