我在从流创建图像时遇到问题。在我的Windows PC上,它分叉很好,在ubuntu服务器上,它抛出一个错误
System.ArgumentException: A null reference or invalid value was found [GDI+ status: InvalidParameter] at System.Drawing.GDIPlus.CheckStatus (System.Drawing.Status) <0x00157> at System.Drawing.Image.CreateFromHandle (intptr) <0x00027> at System.Drawing.Image.LoadFromStream (System.IO.Stream,bool) <0x0002b> at System.Drawing.Image.FromStream (System.IO.Stream,bool,bool) <0x00013>
我检查了系统。绘图库设置在我的服务器上,它说系统。图纸安装
mono-test-install
Your have a working System.Drawing setup
任何想法?
首先,找到System.Drawing.dll文件所在的目录(例如/opt/mono-4.4.0/lib/gac/System.Drawing/4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
)。
在同一个目录下创建一个名为System.Drawing.dll.config
的文件,其中包含以下内容,将目录更新到libgdiplus.so
的正确位置:
<configuration>
<dllmap dll="gdiplus.dll" target="/opt/mono-4.4.0/lib/libgdiplus.so"/>
</configuration>