如何检测字体文件中是否包含某字符
简介
字体文件为.ttf或者.otf等。
在使用字体渲染某些字符时,有可能渲染出空白或者“口”字形,原因在于该字体文件中不包含该字符的字形。
分析
可能的原因包括:
- 字符不在字体的cmap表中(cmap表是字体文件声明的支持字符表);
- 字符不在字体的glyf表中(glyf表是字体文件中实际包含的字形,类似svg描述);
- 未知原因,需要人工进行查看,有些字体比较坑,缺失的字体就随便填个glyf。
第一种原因的检测方法:
1 | from fontTools.ttLib import TTFont |
第二种原因的检测方法:
1 | from fontTools.ttLib import TTFont |
安装fonttools后,将ttf转换为xml格式可以使用文本化的形式查看字体:
1 | ttx test.ttf |
查看后发现该字符没有字形数据:
参考
- https://stackoverflow.com/questions/47948821/python-imagefont-and-imagedraw-check-font-for-character-support
- https://zhuanlan.zhihu.com/p/54379490
- https://github.com/fonttools/fonttools/blob/master/Lib/fontTools/ttLib/tables/_g_l_y_f.py
- https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6glyf.html
- https://github.com/fonttools/fonttools/blob/master/Lib/fontTools/ttLib/tables/_c_m_a_p.py
- https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6cmap.html