本文主要是介绍linux 字体库配置,添加自定义字体库,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装依赖包:
apt-get install fontconfig
配置自定义字体库
- 更新配置文件:
/etc/fonts/fonts.conf - 写入数据
<!-- Font directory list --><dir>/usr/share/fonts</dir><dir>/usr/X11R6/lib/X11/fonts</dir> <dir>/usr/local/share/fonts</dir><dir prefix="xdg">fonts</dir><!-- the following element will be removed in the future --><dir>~/.fonts</dir><!--Accept deprecated 'mono' alias, replacing it with 'monospace'
-->
配置自定义字体库路径:
sed -e '26a\ <dir>/opt/user/font_files</dir>' /etc/fonts/fonts.conf
- 查看字体库信息
fc-list
$ fc-list
/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold
/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book
这篇关于linux 字体库配置,添加自定义字体库的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!