File: psfexportnamesunicodesfp.py

package info (click to toggle)
pysilfont 1.8.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,896 kB
  • sloc: python: 20,490; xml: 989; sh: 46; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 991 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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()