gpt4 book ai didi

python - 我们如何从Python中的glyph id获取unicode?

转载 作者:行者123 更新时间:2023-11-30 23:13:46 31 4
gpt4 key购买 nike

如果我有像下面这样的字形 ID,我如何从中获取 unicode,我正在使用的语言是 python?另外,我理解第二个值是字形 id,但是我们如何称呼第一个值和第三个值?

 (582, 'uni0246', 'LATIN CAPITAL LETTER E WITH STROKE'), (583, 'uni0247', 'LATIN SMALL LETTER E WITH STROKE'), (584, 'uni0248', 'LATIN CAPITAL LETTER J WITHSTROKE'), (585, 'uni0249', 'LATIN SMALL LETTER J WITH STROKE')

请回复。

实际上,我正在尝试从 python 中给定的 ttf 文件获取 unicode。这是代码:

 from fontTools.ttLib import TTFont
from fontTools.unicode import Unicode
from ttfquery import ttfgroups
from fontTools.ttLib.tables import _c_m_a_p
from itertools import chain

ttfgroups.buildTable()
ttf = TTFont(sys.argv[1], 0, verbose=0, allowVID=0,
ignoreDecompileErrors=True,
fontNumber=-1)

chars = chain.from_iterable([y + (Unicode[y[0]],) for y in x.cmap.items()] for x in ttf["cmap"].tables)
print(list(chars))`

这段代码是我从 stackoverflow 获得的,但这给出了上面的输出,而不是我所需要的。那么有人可以告诉我如何从 ttf 文件中获取 unicode 吗?或者可以将 glyphid 转换为 unicode,它会产生实际的 unicode 吗?

最佳答案

您可以使用第一个字段:unichr(x[0]),或等效的第二个字段。然后删除“uni”部分([3:])并将其转换为十六进制值'Ɇ'e,然后转换为字符。当然,第一种方法更快更简单。

unichr(int(x[1][3:], 16)) #对于您显示的第一个项目,返回“Ɇ”,对于第二个“ɇ”

如果您使用 python3,请使用 chr 而不是 unichr。

关于python - 我们如何从Python中的glyph id获取unicode?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29138935/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com