ذخیره عکس با فرمتهای مختلف
دوشنبه 27 آذر 1391 7:48 AM
SaveFileDialog saveFileDlg = New SaveFileDialog();
if (saveFileDlg.ShowDialog() == DialogResult.OK)
**
try
**
//Create Bitmap
Bitmap bimg = (Bitmap)this.pictureBox1.Image;
//Save Bitmap to file
bimg.Save(saveFileDlg.FileName,System.Drawing.Imag ing.ImageFormat.Jpeg);
}
catch (Exception ex)
**
MessageBox.Show(ex.Message, "MDI Sample", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
مدیر تالار های: