zoukankan      html  css  js  c++  java
  • .net Core 在 CentOS7下,报The type initializer for 'Gdip' threw an exception.异常

    .net Core允许在 Centos7 上,使用 System.Draw.Common类库时,报以下错误:

     "Class":"System.TypeInitializationException",
            "Message":"Unable to load DLL 'libgdiplus': The specified module could not be found.",
            "StackTrace":" at System.Drawing.SafeNativeMethods.Gdip.GdipCreateBitmapFromFile(String filename, IntPtr& bitmap)
    at System.Drawing.Bitmap..ctor(String filename, Boolean useIcm)
    at Ims.Dsl.Utility.ImageUtils.GetResolution(String filePath)
    at Ims.Dsl.Persistence.Service.Impl.TemplateService.CreateUploadImage(IList`1 files, String createIp)
    at Ims.Dsl.RestApi.Controllers.v1.TemplateController.UploadImage()

    解决方案如下:

    yum install autoconf automake libtool
    yum install freetype-devel fontconfig libXft-devel
    yum install libjpeg-turbo-devel libpng-devel giflib-devel libtiff-devel libexif-devel
    yum install glib2-devel cairo-devel
    git clone https://github.com/mono/libgdiplus
    cd libgdiplus
    ./autogen.sh
    make
    make install

    创建符号链接:

    ln -s /usr/local/lib/libgdiplus.so /usr/lib64/libgdiplus.so
    ln -s /usr/local/lib/libgdiplus.so /usr/libgdiplus.so
  • 相关阅读:
    二叉树
    基础1
    tcp/udp
    异步io模块(自定义)
    select+异步
    异步发送请求的几种方式
    多线程,进程实现并发请求
    位解包运算
    从前端程序员的视角看小程序的稳定性保障
    运行node 报错 throw er; // Unhandled 'error' event
  • 原文地址:https://www.cnblogs.com/CnKker/p/11418370.html
Copyright © 2011-2022 走看看