Adding upstream version 1.8.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
c48d95b7fa
commit
e40b3259c1
2403 changed files with 153656 additions and 0 deletions
30
examples/psfexportnamesunicodesfp.py
Normal file
30
examples/psfexportnamesunicodesfp.py
Normal file
|
@ -0,0 +1,30 @@
|
|||
#!/usr/bin/env python3
|
||||
'''Outputs an unsorted csv file containing the names of all the glyphs in the default layer
|
||||
and their primary unicode values. Format name,usv'''
|
||||
__url__ = 'https://github.com/silnrsi/pysilfont'
|
||||
__copyright__ = 'Copyright (c) 2018 SIL International (https://www.sil.org)'
|
||||
__license__ = 'Released under the MIT License (https://opensource.org/licenses/MIT)'
|
||||
__author__ = 'Victor Gaultney'
|
||||
|
||||
from silfont.core import execute
|
||||
|
||||
suffix = "_namesunicodes"
|
||||
|
||||
argspec = [
|
||||
('ifont', {'help': 'Input font file'}, {'type': 'infont'}),
|
||||
('-o','--output',{'help': 'Output csv file'}, {'type': 'outfile', 'def': suffix+'.csv'})]
|
||||
|
||||
def doit(args) :
|
||||
font = args.ifont
|
||||
outfile = args.output
|
||||
|
||||
for glyph in font:
|
||||
unival = ""
|
||||
if glyph.unicode:
|
||||
unival = str.upper(hex(glyph.unicode))[2:7].zfill(4)
|
||||
outfile.write(glyph.name + "," + unival + "\n")
|
||||
|
||||
print("Done")
|
||||
|
||||
def cmd() : execute("FP",doit,argspec)
|
||||
if __name__ == "__main__": cmd()
|
Loading…
Add table
Add a link
Reference in a new issue