System.Runtime.InteropServices.ExternalException:“GDI+ 中发生一般性错误。”
原因:文件夹不存在。
解决方法:
if (!Directory.Exists(imageDir)) { Directory.CreateDirectory(imageDir); }
检查并创建文件夹。
标签:一般性,ExternalException,C#,System,InteropServices,GDI,Runtime From: https://www.cnblogs.com/runliuv/p/16744228.html