无法检测 .pcf 字体

无法检测 .pcf 字体

我想安装教授,并且它附带 .pcf(位图)文件。

安装 .tff 很容易,但它们不包含任何位图形状,因此它们看起来可能不像原始文件那么干净

我尝试将其添加到 fonts.conf 上

在此输入图像描述

专业字体

我尝试添加字体路径

xset fp+ /usr/local/fonts/bitmap

xset fp rehash

并使用以下方法更新:

fc-cache -f -v

但 profont 仍然失踪。

fc-cache -f -v 的结果是:

/usr/local/share/fonts/bitmap:缓存,新缓存内容:0 个字体,0 个目录

没有找到字体,但在其他目录中找到了很多字体

我使用 Debian 8.4 杰西,KDE 4.14.2

答案1

PCF字体应该进入misc/not bitmap/,我可以在该网站上安装字体,而无需经过任何特殊配置。我只将文件放入正确的文件夹中。让我们一步一步来:

获取字体:

mkdir -p ~/.local/share/fonts/misc
cd ~/.local/share/fonts/misc
wget -O pro.zip http://tobiasjung.name/downloadfile.php?file=profont-x11.zip

将字体文件直接放在 , 下~/.local/share/fonts/misc,并作为额外的压缩文件以节省空间。

unzip pro.zip
mv profont-x11/P*.pcf .
for f in *.pcf; do gzip "$f"; done

强制更新缓存(就像您所做的那样),我们有字体:

$ fc-cache -f
$ fc-match -a pro | grep Pro
ProFont_r400-12.pcf.gz: "ProFont" "Regular"
ProFont_r400-11.pcf.gz: "ProFont" "Regular"
ProFont_r400-15.pcf.gz: "ProFont" "Regular"
ProFont_r400-10.pcf.gz: "ProFont" "Regular"
ProFont_r400-17.pcf.gz: "ProFont" "Regular"
ProFont_r400-22.pcf.gz: "ProFont" "Regular"
ProFont_r400-29.pcf.gz: "ProFont" "Regular"

如果您使用 fontconfig 默认值,则无需调整 fonts.conf 或编辑字体路径。

笔记:

  • 我正在使用本地 fontconfig 路径(~/.local即每个用户),每个系统路径很简单/usr/share/fonts/misc/

  • 如果你真的想使用bitmap/而不是misc/你确实需要xset打电话。

相关内容