.NET Core使用Bitmap
出现错误:
The type initializer for 'Gdip' threw an exception.
原因是缺少libgdiplus
库。
安装GDI+库libgdiplus
:
apt-get update
apt-get install libgdiplus -y
ln -s /usr/lib/libgdiplus.so /usr/lib/gdiplus.dll
.NET Core使用Bitmap
出现错误:
The type initializer for 'Gdip' threw an exception.
原因是缺少libgdiplus
库。
安装GDI+库libgdiplus
:
apt-get update
apt-get install libgdiplus -y
ln -s /usr/lib/libgdiplus.so /usr/lib/gdiplus.dll