Computer graphics program to use the putpixel command to place points on the screen of different colors

0
106

Computer graphics program in Python and C++

Python

from graphics import *
win = GraphWin("Experiment 2-1", 600, 600)
#text
label = Text(Point(250, 7), 'Plot pixels of different colors')
label.draw(win)
#plotPixels
win.plotPixel(150,150, "blue")
win.plotPixel(120,180, "red")
win.plotPixel(200,250, "black")
win.plotPixel(100,300, "green")
win.plotPixel(500,450, "orange")
win.plotPixel(150,520, "pink")
win.getMouse()
win.close()

Computer Graphics

C++

#include​<conio.h>
#include​<graphics.h>
int ​​main​() {
​int​ gd = DETECT, gm;
​initgraph​(&gd, &gm, ​""​);​
for​(​int​ i = ​0​ ; i < ​getwindowwidth​(); i++) { 
​putpixel​(​0​ + i, ​50​, i % ​16​);
​putpixel​(​0​ + i, ​50​, i % ​16​);
​putpixel​(​0​ + i, ​50​, i % ​16​);
​putpixel​(​0​ + i, ​50​, i % ​16​);
​putpixel​(​0​ + i, ​50​, i % ​16​);
}
​getch​();​
closegraph​();​
return​​0​;
}
Computer Graphics

LEAVE A REPLY