Parsi Coders

نسخه‌ی کامل: طریقه ذخیره یک عکس با فرمتهای مختلف
شما در حال مشاهده نسخه آرشیو هستید. برای مشاهده نسخه کامل کلیک کنید.
کد:
//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.Imaging.ImageFormat.Jpeg);

                }

                catch (Exception ex)

                {

                    MessageBox.Show(ex.Message, "MDI Sample", MessageBoxButtons.OK, MessageBoxIcon.Error);

                }

            }