如何在没有一般错误的情况下将图像保存在图片框中

时间:2012-09-12 13:35:47

标签: c# image gdi

  

可能重复:
  A generic error occurred in GDI+, JPEG Image to MemoryStream

我有一个PictureBox,它的图像是从数据库加载的。

MemoryStream ms2 = new MemoryStream((byte[])reader[13]);
pbShenasname.Image = Bitmap.FromStream(ms2);
ms2.Close();

我想通过执行以下操作将此图像从PictureBox保存到本地硬盘中的路径:

if (SFD.ShowDialog() == DialogResult.OK)
    pbShenasname.Image.Save(SFD.FileName,System.Drawing.Imaging.ImageFormat.Jpeg);

SFD是一个saveFileDialog。

当我尝试这段代码时,我遇到了一般错误GDI的错误。 如何保存它没有错误?

0 个答案:

没有答案