我使用此代码使用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");
答案 0 :(得分:0)
在行上设置断点生成异常,然后检查fBitmapName的内容,需要确保fBitmapName +“。bmp”是硬盘中的有效图像文件