Fonts

無法檢測 .pcf 字型

  • September 4, 2016

我想安裝Profonts,它帶有 .pcf(點陣圖)文件。

安裝 .tff 很容易,但它們不包含任何點陣圖形狀,因此它們可能看起來不像原始的那樣乾淨

我試圖在 fonts.conf 上添加這個

在此處輸入圖像描述

ProFont

我試圖添加字型路徑

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

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呼叫。

引用自:https://unix.stackexchange.com/questions/307748