Graphics In Dev C++

Graphics

#define KEYHOME 71 #define KEYUP 72 #define KEYPGUP 73 #define KEYLEFT 75 #define KEYCENTER 76 #define KEYRIGHT 77 #define KEYEND 79 #define KEYDOWN 80 #define KEYPGDN 81 #define KEYINSERT 82 #define KEYDELETE 83 #define KEYF1 59 #define KEYF2 60 #define KEYF3 61 #define KEYF4 62 #define KEYF5 63 #define KEYF6 64 #define KEYF7.

  • Related Questions & Answers
  • Selected Reading
C++Server Side ProgrammingProgramming

Graphics.h In Dev C++

C++ programming language is a versatile programming language. Using C++ you can create low end graphics too i.e. creating basic shapes and words with stylish fonts and adding colors to them can be done using c++.

Graphic programming can be done in c++ using your terminal or command prompt or you can download DevC++ compiler to create graphic programs.

For terminal you need to add the graphics.h libraray to you GCC compiler. For this you will have type in the following commands.

On sequentially typing all the above commands you can successfully install the graphics.h library in your GCC compiler of terminal.

for or the other method you need to install the DevC++ compiler.

graphics.h library − The graphic.h library is used to add graphics to your C++ program. For graphic programming, it is a must include library as it contains all required methods.

Use Of Graphics In Dev C++ Youtube

Syntax for including graphics in c++ program &ninus;

Syntax

Example

Graphics In Dev C++

Program to show implementation of graphic programming in c++ −

Output

Other Common functions of of C++ graphic programming are −

  • arc() − creates arc of a given angle and given radius.

  • bar() − creates a bar with given coordinates.

  • circle() − creates a circle of given radius.

  • closegraph() − it closed the graphics mode and deallocated memory chunks.

  • ellipse() − creates an ellipse with given major and minor axis.

  • floodfill() − flood fill is used to fill a specific color to a specific point whose coordinates are given.

  • line() − creates a line of given starting and ending points.

  • rectangle() − creates a rectangle with given coordinates.