graphics functions in hindi and standards

hello दोस्तों आज मैं आपको graphics functions in hindi (ग्राफ़िक्स फंक्शन क्या होते है) के बारें में विस्तार से बताऊंगा तो चलिए start करते है:-

graphics functions in hindi

graphics functions निम्नलिखित है:-

1:- putpixel

putpixel function का प्रयोग screen में pixel को draw करने के लिए किया जाता है. pixel स्क्रीन में छोटा dot होता है.

syntax:- putpixel(x co-ordinate, y co-ordinate, COLOR);

उदाहरण:- putpixel (150,150,RED);

2:- setbkcolor

setbkcolor फंक्शन का use स्क्रीन के background color को set करने के लिए किया जाता है.

syntax- setbkcolor(COLOR);

उदाहरण:- setbkcolor(RED);

3:- setlinestyle

setlinestyle फंक्शन का प्रयोग line style, width, और pattern को सेट करने के लिए किया जाता है.

syntax:- setlinestyle(linestyle, pattern, thickness);

उदाहरण:- setlinestyle(DOTTED_LINE,1,2);

4:- setcolor

setcolor जो है वह objects के color को set करता है जो कि setcolor line के बाद draw होता है.

syntax:- setcolor (COLOR);

उदाहरण:- setcolor (YELLOW);

5:- Rectangle

इस function का प्रयोग स्क्रीन में rectangle को draw करने के लिए किया जाता है.

syntax:- rectangle(x1,y1,x2,y2);

उदाहरण:- rectangle (50,50,150,150);

6:- textheight

textheight जो है वह pixels में string की height को return करता है.

syntax:- textheight (STRING);

उदाहरण:- i=textheight(“HOW ARE YOU”);

7:- textwidth

यह pixels में string की width को return करता है.

syntax- textwidth (STRING);

उदाहरण:– i=textwidth(“HOW”);

8:- getx

यह current position के x co-ordinate को return करता है.

syntax:- getx();

उदाहरण:- x=getx();

9:- gety

यह current position के y co-ordinate को return करता है.

syntax:- gety();

उदाहरण:- y=gety();

10:- line

line function का प्रयोग स्क्रीन में line को draw करने के लिए किया जाता है.

syntax:- line(x1,y1,x2,y2);

example:- line(50,50,100,100);

11:- closegraph

Closegraph function जो है वह graphic system को shut down कर देता है.

syntax:- closegraph();

example:- closegraph();

12:- moveto

यह फंक्शन स्क्रीन में cursor की position को बदल देता है.

syntax:- moveto(x co-ordinate, y co-ordinate);

example:- moveto(getmaxx/2,getmaxy/2);

13:- settextstyle

settextstyle फंक्शन text की characteristics जैसे:- font, direction, तथा size को set करता है.

syntax:- settextstyle(font,direction,size);

example:- settextstyle(1,1,10);

14:- cleardevice

cleardevice का प्रयोग स्क्रीन में graphic images को clear करने के लिए किया जाता है.

syntax:- cleardevice();

example:- cleardevice();

15:- ellipse

ellipse function का प्रयोग स्क्रीन में ellipse को draw करने के लिए किया जाता है.

syntax:- ellipse (x,y,starting angle,ending angle, xradius, yradius);

example:- ellipse (200,200,90,100,100);

graphics function in hindi
इमेज

निवेदन:- अगर आपको graphics functions in hindi की यह पोस्ट पसंद आई हो तो please आप इसे अपने दोस्तों के साथ जरुर share कीजियेगा. तथा आपके कोई questions हो तो उन्हें कमेंट करके बताइए. धन्यवाद. जय हिन्द.

1 thought on “graphics functions in hindi and standards”

Leave a Comment