一、安装字体库
在centos7使用fontconfig安装字体库
yum -y install fontconfig
安装成功后,打开/usr/share目录可以查看到两个文件目录
fonts
fontconfig
添加中文字体在/usr/share/fonts目录下创建目录chinese
在windows上查找要使用的中文字体,打开C:\windows\fonts目录
将需要的字体传到/usr/share/fonts/chinese目录下
目录进行授权
chmod -R 755 /usr/share/fonts/chinese
使用ttmkfdir来搜索目录中所有字体信息
yum -y install ttmkfdir
执行命令
ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir
修改字体配置文件
vi /etc/fonts/fonts.conf
<dir>/usr/share/fonts/chinese</dir>
:wq保存退出
刷新内存中的字体缓存
fc-cache
可以通fc-list查看字体列表
网友评论