Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to save Graphics object as image in C#?

Tags:

c#

image

graphics

I have panel and various controls on it. I would like to save an image of this panel into a file, how can I do this ?

Ineed to do something like screenshot, but I need just image of certain panel in my application and I want to do this on a button click in my app.

Best regards, Primoz


EDIT: I also draw on this panel using this code

            Graphics g = chartTemperature.CreateGraphics();    
            g.DrawLine(p, prevPoint, e.Location);
            prevPoint = e.Location;

But then I don't get this into image. Why, and how to fix this ?


EDIT 2:

namespace Grafi
{
    public partial class Form1 : Form
    {

        bool isDrawing = false;
        Point prevPoint;

        public Form1()
        {
            InitializeComponent();
        }

        private void chartTemperature_MouseDown(object sender, MouseEventArgs e)
        {
            isDrawing = true;
            prevPoint = e.Location;
        }

        private void chartTemperature_MouseMove(object sender, MouseEventArgs e)
        {
            Pen p = new Pen(Color.Red, 2); 
            if (isDrawing)
            {
                Graphics g = chartTemperature.CreateGraphics();    
                g.DrawLine(p, prevPoint, e.Location);
                prevPoint = e.Location;

                numOfMouseEvents = 0;              
            }
            p.Dispose();
        }

        private void chartTemperature_MouseUp(object sender, MouseEventArgs e)
        {
            isDrawing = false;
        }
    }
} 

This is my drawing code to draw a custom line onto a Chart. Can you please help me to do it proper way ?

like image 294
Primoz Avatar asked Nov 12 '10 11:11

Primoz


2 Answers

Use the Control.DrawToBitmap() method. For example:

    private void button1_Click(object sender, EventArgs e) {
        using (var bmp = new Bitmap(panel1.Width, panel1.Height)) {
            panel1.DrawToBitmap(bmp, new Rectangle(0, 0, bmp.Width, bmp.Height));
            bmp.Save(@"c:\temp\test.png");
        }
    }
like image 67
Hans Passant Avatar answered Oct 21 '22 02:10

Hans Passant


In response to your edit:

If you are drawing on the panel using a Graphics object returned by the CreateGraphics method, your graphics are not permanent. Anything that you draw on the object will be erased the next time that the control is redrawn. (For more detailed information on this subject, see: https://web.archive.org/web/20131226033137/http://bobpowell.net/picturebox.aspx and https://web.archive.org/web/20141006045615/http://bobpowell.net/creategraphics.aspx)

When you use the DrawToBitmap method as suggested by Hans Passant's answer, the panel control is getting redrawn, which is causing your drawings to be lost.

Instead, if you want your drawings to be permanent, you need to handle the Paint event of the panel control. This event is raised every time that the control needs to be redrawn, and provides an instance of PaintEventArgs that contains a Graphics object you can use to draw permanently on the control's surface in the same way that you were using the Graphics object returned by the CreateGraphics method.

Once you've corrected your drawing code, you can use Hans's solution.

like image 3
Cody Gray Avatar answered Oct 21 '22 02:10

Cody Gray