Different Fill Type C program in Computer Graphics

Friday, May 28, 2010

Aim
To draw the Different Fill type in C program using Graphics Function CS1355-Graphics & Multimedia Lab
Algorithm
Start the Fill type program
Include the necessary c header files
Declare the fill types name in fname
Using fill type and setcolor function to draw the program
Finally terminate the fill type program
Source code in Program c for different fill types
#include <graphics.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <conio.h>
void main()
{
int gd=DETECT,gm;
int s;
char *fname[] = { "EMPTY FILL","SOLID FILL","LINE FILL",
"LTSLASH FILL","SLASH FILL","BKSLASH FILL",
"LTBKSLASH FILL","HATCH FILL",
"XHATCH FILL","INTERLEAVE FILL",
"WIDE DOT FILL","CLOSE DOT FILL","USER FILL"
};
initgraph(&gd,&gm," ");
clrscr();
cleardevice();
for (s=0;s<13;s++)
{
setfillstyle(s,2);
setcolor(14);
rectangle(149,9+s*30,251,31+s*30);
bar(150,10+s*30,250,30+s*30);
outtextxy(255,20+s*30,fname[s]);
}
getch();
closegraph();
}

Output of the Program in C

Different Fill Type C program in Computer Graphics

0 comments:

Post a Comment