How can i save an image showing in a Picture Box

  • Thread starter Thread starter thomaz
  • Start date Start date
T

thomaz

I would like to know the correct way to save an image
showing in a Picture Box????

Thanks....
 
Hi,

A PictureBox contain an instance of an Image class ( usually a Bitmap type
as Image is abstract ),
Image provide a method named Save() which you can use to save it. it as
several overload so you have to decide which one is more suited to your
needs

Cheers,
 
Back
Top