图像来源问题

我从stream中创build图像时遇到问题。 在我的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

有任何想法吗?

首先,找到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>