saving panel contents as JPEG image

  • Thread starter Thread starter Laxmikant Rashinkar
  • Start date Start date
L

Laxmikant Rashinkar

Hi,

I am drawing some graphical data (such as waveforms and graphs) on a panel.
I would like to save this graphical data as a jpeg image. How does one do
this
in C#?

thank you for your help.
LK
 
Hi,

If I understand correctly, you are using GDI+ drawing on the graphics object
created from the panel?

if this is the case, just create a new bitmap object, do all the drawings on
that graphics object and then save it to a file.

Picho.
 
Back
Top