Il fontconfig
i comandi possono restituire l'elenco dei glifi come un elenco compatto di intervalli, ad esempio:
$ fc-match --format='%{charset}\n' OpenSans
20-7e a0-17f 192 1a0-1a1 1af-1b0 1f0 1fa-1ff 218-21b 237 2bc 2c6-2c7 2c9
2d8-2dd 2f3 300-301 303 309 30f 323 384-38a 38c 38e-3a1 3a3-3ce 3d1-3d2 3d6
400-486 488-513 1e00-1e01 1e3e-1e3f 1e80-1e85 1ea0-1ef9 1f4d 2000-200b
2013-2015 2017-201e 2020-2022 2026 2030 2032-2033 2039-203a 203c 2044 2070
2074-2079 207f 20a3-20a4 20a7 20ab-20ac 2105 2113 2116 2120 2122 2126 212e
215b-215e 2202 2206 220f 2211-2212 221a 221e 222b 2248 2260 2264-2265 25ca
fb00-fb04 feff fffc-fffd
Usa fc-query
per un .ttf
file e fc-match
per un nome di carattere installato.
Ciò probabilmente non comporta l'installazione di alcun pacchetto aggiuntivo e non comporta la traduzione di una bitmap.
Usa fc-match --format='%{file}\n'
per verificare se viene abbinato il carattere corretto.
Il programma X xfd può farlo. Per vedere tutti i caratteri per il font "DejaVu Sans Mono", eseguire:
xfd -fa "DejaVu Sans Mono"
È incluso nel pacchetto x11-utils su Debian/Ubuntu, xorg-x11-apps su Fedora/RHEL e xorg-xfd su Arch Linux.
Ecco un metodo che usa la libreria fontTools Python (che puoi installare con qualcosa come pip install fonttools
):
#!/usr/bin/env python
from itertools import chain
import sys
from fontTools.ttLib import TTFont
from fontTools.unicode import Unicode
with TTFont(
sys.argv[1], 0, allowVID=0, ignoreDecompileErrors=True, fontNumber=-1
) as ttf:
chars = chain.from_iterable(
[y + (Unicode[y[0]],) for y in x.cmap.items()] for x in ttf["cmap"].tables
)
if len(sys.argv) == 2: # print all code points
for c in chars:
print(c)
elif len(sys.argv) >= 3: # search code points / characters
code_points = {c[0] for c in chars}
for i in sys.argv[2:]:
code_point = int(i) # search code point
#code_point = ord(i) # search character
print(Unicode[code_point])
print(code_point in code_points)
Lo script prende come argomenti il percorso del carattere e facoltativamente punti/caratteri di codice da cercare:
$ python checkfont.py /usr/share/fonts/**/DejaVuSans.ttf
(32, 'space', 'SPACE')
(33, 'exclam', 'EXCLAMATION MARK')
(34, 'quotedbl', 'QUOTATION MARK')
â¦
$ python checkfont.py /usr/share/fonts/**/DejaVuSans.ttf 65 12622 # a ã
LATIN CAPITAL LETTER A
True
HANGUL LETTER HIEUH
False
fc-query my-font.ttf
ti fornirà una mappa dei glifi supportati e tutte le località per cui il carattere è appropriato secondo fontconfig
Dato che praticamente tutte le app Linux moderne sono basate su fontconfig, questo è molto più utile di un elenco unicode grezzo
Il formato di output effettivo è discusso qui http://lists.freedesktop.org/archives/fontconfig/2013-September/004915.html