我想创建一个程序,将 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);