Net Core教程

解决linux下 使用netcore生成图片报错的问题:The type initializer for 'Gdip' threw an exception

本文主要是介绍解决linux下 使用netcore生成图片报错的问题:The type initializer for 'Gdip' threw an exception,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1、安装组件
yum -y install autoconf automake libtool
yum -y install freetype-devel fontconfig libXft-devel
yum -y install libjpeg-turbo-devel libpng-devel giflib-devel libtiff-devel libexif-devel
yum -y install glib2-devel cairo-devel
yum -y install mlocate

2、安装libgdiplus
yum install libgdiplus-devel

3、创建符号连接
ln -s /usr/local/lib/libgdiplus.so /usr/lib64/libgdiplus.so
ln -s /usr/local/lib/libgdiplus.so /usr/libgdiplus.so

4、修改配置文件
vi /etc/ld.so.conf
添加/usr/local/lib

5、重启应用

这篇关于解决linux下 使用netcore生成图片报错的问题:The type initializer for 'Gdip' threw an exception的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!