Sample – Program to plot pixels.

by Nideesh C on February 8, 2011 · 0 comments

in C++




#include <conio.h>
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>

void main (int)
{
int gdriver=DETECT,gmode,errorcode; //Requesting auto-detection.
int midx,midy,x;
//Initializing graphics and local variables.
initgraph(&gdriver,&gmode,”d:\\bc3\\bgi”);
//Reading result of initialization.
errorcode=graphresult();
if(errorcode!=grOk)
//An error occurred.
{
printf(“Graphics error occurred : %s \n”,grapherrormsg(errorcode));
printf(“Press any key to stop : “);
getch();
exit(1); //Terminate the program due to error.
}
for(x=40;x<120;x=x+10)
{
putpixel(x,200,14); //Plots 1 pixel at position(x,200) with YELLOW color(14)
getch();
}
}

This graphics program plots eight yellow-colored pixels on the screen using the ‘putpixel’ command.

Not Satisfied ? Just search & get the result

Related Posts Plugin for WordPress, Blogger...
Be Sociable, Share!

Related posts:

  1. Sample – Program to construct a 3-dimensional bar.
  2. Sample – Program to change the foreground colors and draw circles on the screen.
  3. Sample – Program to change the background colors on the screen.
  4. Sample – Program to write in different fonts on the screen.
  5. Sample – Program to draw circles.

Leave a Comment

Previous post:

Next post: