Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#
Tip/Trick

Drawing on picture box images

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
24 Jan 2012CPOL 80.6K   6   2
Drawing on picture box images
You can draw an Ellipse on the pictureBox image using the following code:
C#
public void drawEllipse(PictureBox pb, int x, int y, int w, int h, float Bwidth,Color col)
        {
            //refresh the picture box
            pb.Refresh();
            //create a graphics object
            Graphics g = pb.CreateGraphics();
            //create a pen object
            Pen p = new Pen(col, Bwidth);
            //draw Ellipse
            g.DrawEllipse(p, x, y, w, h);
            //dispose pen and graphics object
            p.Dispose();
            g.Dispose();
        }

In here, I grab the picturebox graphics using pb.CreateGraphics() so that I can draw on its surface. But drawing on the PictureBox only affects the pixels on the screen, not the pixels in the image. You can however, obtain the Graphics for the image. You can see that in the next example.

You can draw a line on the pictureBox image using the following code:


C#
public void drawline(PictureBox pb, Point p1, Point p2, float Bwidth,Color c1)
        {
            //refresh the picture box
            pb.Refresh(); 
            //create a new Bitmap object
            Bitmap map=(Bitmap)pb.Image;  
            //create a graphics object
            Graphics g = Graphics.FromImage(map);  
            //create a pen object and setting the color and width for the pen
            Pen p = new Pen(c1, Bwidth);  
            //draw line between  point p1 and p2
            g.DrawLine(p, p1, p2);  
            pb.Image = map;  
            //dispose pen and graphics object
            p.Dispose();  
            g.Dispose();
        }

After creating the graphics object(g), there are several predefined methods you can use to draw objects. Some are listed below:
g.DrawArc
g.DrawCurve
g.DrawBezier
g.DrawIcon
g.DrawImage
g.DrawPath 
g.DrawRectangle

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Sri Lanka Sri Lanka
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
General//draw a filled Ellipse Graphics g = Graphics.FromImage(Ima... Pin
Dhanushka Madushan lk24-Jan-12 22:07
Dhanushka Madushan lk24-Jan-12 22:07 
GeneralRe: //draw a filled Ellipse Graphics g = Graphics.FromImage(Ima... Pin
rexpertq31-May-13 2:09
rexpertq31-May-13 2:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.