//需要引用命名空间 using System.Drawing; using System.Drawing.Text; //获取系统字体方法 public dynamic GetFontNames() { FontFamily[] fontFamilies; InstalledFontCollection installedFontCollection = new InstalledFontCollection(); fontFamilies = installedFontCollection.…
一,centos系统默认不支持中文字体的,需要手动安装windows系统中的中文字体库到centos中. 首先,将windows系统中的字体拷贝出来: windows:打开C:\Windows\Fonts 1,查看系统安装了哪些字体 fc-list (如果没有此命令,需要yum安装字体库) 2,安装字体库 yum -y install fontconfig cd /usr/share/fonts mkdir chinese cd chinese #上传拷贝出来的windows中文字 chmo…