How to save Graphics object as image in C#?

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 ?

Answer 1

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");}}

Answer 2

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: http://www.bobpowell.net/picturebox.htm and http://www.bobpowell.net/creategraphics.htm)

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.

http://stackoverflow.com/questions/4164190/how-to-...

陳鍾誠 (2011年12月12日),(網頁標題) Something,(網站標題) 免費電子書:C# 程式設計,2011年12月12日,取自 http://cs0.wikidot.com/something ,網頁修改第 0 版。


arrow
arrow

    Johnson峰 發表在 痞客邦 留言(0) 人氣()