我在从流中创建图像时遇到问题。在我的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>
我检查了服务器上的System.Drawing库设置,它说已经安装了system.drawing
mono-test-install
Your have a working System.Drawing setup
任何想法?
答案 0 :(得分:1)
首先,找到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>