日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python返回unicode_我们如何从python中的字形id获取unicode?

發布時間:2023/12/19 python 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python返回unicode_我们如何从python中的字形id获取unicode? 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

If I have glyph ids like below how can I get the unicode from them, the language is python that I am working on ? Also what I understand the second value is the glyph id but what do we call the first value and the third value?

(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')

Kindly reply.

Actually I am trying to get the unicode from a given ttf file in python.Here is the code :

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))`

This code I got from stackoverflow only but this gives the above output and not what I require. So could anybody please tell me how to fetch the unicodes from the ttf file or is it fine to convert the glyphid to unicode, will it yield to actual unicode ?

解決方案

You can use the first field: unichr(x[0]), or equivalently the second field. Then you remove the "uni" part ([3:]) and you convert it to a hexadecimal valu'?'e, then to a character. Of course, the first method is faster and simpler.

unichr(int(x[1][3:], 16)) #for the first item you've showed, returns '?', for the second '?'

If you use python3, chr instead of unichr.

總結

以上是生活随笔為你收集整理的python返回unicode_我们如何从python中的字形id获取unicode?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。