setcolor() function which is used to set the current drawing color to the new color. default drawing color is WHITE
यह फंक्शन वर्तमान ड्राइंग कलर को नए कलर में परिवर्तित करता है। सामान्यत: ड्राइंग कलर सफ़ेद होता है।
Syntax and Example :
void setcolor(int color);
setcolor(RED); OR setcolor(4);
यह फंक्शन वर्तमान बैकग्राउंड कलर को नए कलर में परिवर्तित करता है। सामान्यत: बैकग्राउंड कलर काला होता है।
Syntax and Example :
void setbkcolor(int color);
setbkcolor(YELLLOW);
floodfill() function is used to fill an enclosed area. Current fill pattern and fill color is used to fill the area.
यह फंक्शन बंद क्षेत्र में रंग भरने के कार्य करता है, इस हेतु यह वर्तमान रंग एवं पैटर्न का प्रयोग करता है।
Syntax and Example :
void floodfill(int x, int y, int border);
floodfill(100,100,RED);
C program to explain setcolor, setbkcolor, floodfill function.
#include <graphics.h>
#include <stdio.h>
#include <conio.h>
int main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "C:\\TC\\BGI");
setcolor(RED);
setbkcolor(YELLLOW);
circle(100,100,50);
floodfill(100,100,RED);
getch();
closegraph();
return 0;
}
No comments:
Post a Comment