Using System.Drawing.Common in Linux/Docker

Using System.Drawing.Common in Linux/Docker

Preface

After the project is migrated to .net core, we can use the System.Drawing.Common component to operate Image and Bitmap types to generate verification codes, QR codes, image operations and other functions. The System.Drawing.Common component depends on GDI+, but there is no GDI+ on Linux. After programming for Google, I found that the Mono team implemented the GDI+ interface in C language, providing access to the GDI+ interface for non-Windows systems. This should be libgdiplus . Therefore, if you want to run the System.Drawing.Common code stably on Linux, you must install the component libgdiplus . Now most of them are released by docker. How to install libgdiplus quickly and easily?

Install libgdiplus

Solution 1

Rebuild an image with libgdiplus based on mcr.microsoft.com/dotnet/core/aspnet:3.1 provided by Microsoft, but the problem is that it will have to be rebuilt again if the version is updated in the future. Of course, if you write a script to automatically build it, then there will be no problem. Ha ha

Solution 2

This is also what I am currently using. I install libgdiplus when building the application image. However, because the system image source is from abroad, the installation of libgdiplus is very slow and unbearable. We changed the system package source address to the Alibaba Cloud package source address, and the problem was solved. The reference Dockerfile is as follows:

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
...

Replace the package source address. Please note that the official image uses the source of debian instead of ubuntu . At first, I thought it was ubuntu and I failed for a long time.

sed -i "s@http://deb.debian.org@http://mirrors.aliyun.com@g" /etc/apt/sources.list

Extra: What to do if Chinese fonts are missing? Easy

In addition to the above problems, we also encountered missing fonts, which resulted in all the Chinese fonts in the generated pictures being garbled. The Chinese here refers to the ones we drew ourselves through the program. What about this question? Just make up for what you lack. If you lack fonts, just make up for the fonts. Based on the above Dockerfile adjustment:

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
...

This is the end of this article about sharing the pitfalls of using System.Drawing.Common in Linux/Docker. For more relevant content about using System.Drawing.Common in linux docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Summary of commonly used tool functions in Vue projects

>>:  Brief analysis of mysql scheduled backup tasks

Recommend

Summary of horizontal scrolling website design

Horizontal scrolling isn’t appropriate in all situ...

HTML data submission post_PowerNode Java Academy

The HTTP request methods specified by the HTTP/1....

Tutorial on installing GreasyFork js script on mobile phone

Table of contents Preface 1. Iceraven Browser (Fi...

How to build gitlab on centos6

Preface The original project was placed on the pu...

Analysis of MySQL user management operation examples

This article describes the MySQL user management ...

Detailed steps to install MySQL 5.7 via YUM on CentOS7

1. Go to the location where you want to store the...

Unicode signature BOM detailed description

Unicode Signature BOM - What is the BOM? BOM is th...

Getting Started Tutorial for Beginners ⑨: How to Build a Portal Website

Moreover, an article website built with a blog pro...

Sample code for implementing Google third-party login in Vue

Table of contents 1. Developer Platform Configura...

Detailed Analysis of the Selection of MySQL Common Index and Unique Index

Suppose a user management system where each perso...

How to build a virtual machine with vagrant+virtualBox

1. Introduction Vagrant is a tool for building an...

Some properties in CSS are preceded by "*" or "_".

Some properties in CSS are preceded by "*&qu...

JS realizes the scrolling effect of announcement online

This article shares the specific code of JS to ac...

Mysql transaction isolation level principle example analysis

introduction You must have encountered this in an...