0

我想创建一个程序,将 bmp 文件保存到我的图片\测试中。由于某些未知原因,我得到 -“GDI+ 中发生一般错误。” 请帮助我理解为什么这会发生在我身上。我的代码是:

System.Drawing.Image img = Properties.Resources.pic;
        string path = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures);
        string path2 = path+@"\"+"test";
        img.Save(path2, System.Drawing.Imaging.ImageFormat.Bmp);
4

1 回答 1

0

可以是任意数量的东西,但尝试保存图像的副本:

System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(Properties.Resources.pic);
string path = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures);
string path2 = path+@"\"+"test";
bmp.Save(path2);
于 2013-06-04T20:06:45.197 回答