在項目遷移到 .net core 上面後,咱們可使用 System.Drawing.Common
組件來操做 Image,Bitmap 類型,實現生成驗證碼、二維碼,圖片操做等功能。System.Drawing.Common
組件它是依賴於 GDI+ 的,而後在 Linux 上並無 GDI+,面向谷歌編程以後發現,Mono 團隊使用 C語言 實現了GDI+
接口,提供對非Windows系統的 GDI+ 接口訪問能力,這個應該就是libgdiplus
。因此想讓代碼在 linux 上穩定運行有關 System.Drawing.Common
的代碼的時候,必須安裝組件libgdiplus
。而如今大可能是 docker 進行發佈,若是快速簡單的安裝 libgdiplus
?linux
libgdiplus
基於微軟提供的 mcr.microsoft.com/dotnet/core/aspnet:3.1
從新構建一個帶libgdiplus
的鏡像,可是帶來的問題是,未來版本更新了,都得從新構建一遍。固然寫腳本自動構建,那就沒問題了。哈哈docker
這也是我目前採用的,構建應用鏡像的時候安裝 libgdiplus
,可是由於系統鏡像源是國外,致使安裝 libgdiplus
十分緩慢,不忍直視。咱們把系統包源地址修改爲阿里雲包源地址,問題就迎刃而解了。 參考 Dockerfile
以下:編程
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 RUN sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list RUN apt-get update -y && apt-get install -y libgdiplus && apt-get clean && ln -s /usr/lib/libgdiplus.so /usr/lib/gdiplus.dll ARG PROJECT WORKDIR /app ...
替換包源地址,注意哦,官方鏡像使用的是 debian
而不是 ubuntu
的源,一開始我一直覺得 ubuntu
搞半天沒成功。ubuntu
sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list
除了遭遇以上問題外,還遇到了字體缺失,致使的生成圖片中有關中文字體所有是亂碼的狀況,這裏的中文是指咱們經過程序本身畫上去的。對於這個問題嘛?缺啥補啥唄,缺字體補字體。基於上面的 Dockerfile
調整:app
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 RUN sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list RUN apt-get update -y && apt-get install -y libgdiplus locales fontconfig && apt-get clean && ln -s /usr/lib/libgdiplus.so /usr/lib/gdiplus.dll RUN sed -ie 's/# zh_CN.UTF-8 UTF-8/zh_CN.UTF-8 UTF-8/g' /etc/locale.gen && locale-gen && mkdir /usr/share/fonts/truetype/deng/ ADD ./fonts/* /usr/share/fonts/truetype/deng/ RUN fc-cache -vf && fc-list ENV LANG zh_CN.UTF-8 ARG PROJECT WORKDIR /app ...