做手术后如何保存图片

时间:2012-03-08 22:06:41

标签: c# winforms picturebox

我使用此代码使用PictureBox保存图片:

pbMainPicture.Image.Dispose();
string fBitmapName = storagePath;
pbMainPicture.Image = new Bitmap(fBitmapName + ".bmp");
Image img = Image.FromFile(fBitmapName + ".bmp");
img.Save(fBitmapName + ".jpg", ImageFormat.Jpeg);
img.Dispose();

但是我得到了这个例外:System.ArgumentException在这行代码中未处理:

pbMainPicture.Image = new Bitmap(fBitmapName + ".bmp");

1 个答案:

答案 0 :(得分:0)

在行上设置断点生成异常,然后检查fBitmapName的内容,需要确保fBitmapName +“。bmp”是硬盘中的有效图像文件