Update for UFO naming of glyph files and make -g ttx parameter force -s
This commit is contained in:
parent
232e2b8467
commit
abed27fd8c
@ -41,6 +41,7 @@ usage: ttx [options] inputfile1 [... inputfileN]
|
|||||||
-g Split glyf table: Save the glyf data into separate TTX files
|
-g Split glyf table: Save the glyf data into separate TTX files
|
||||||
per glyph and write a small TTX for the glyf table which
|
per glyph and write a small TTX for the glyf table which
|
||||||
contains references to the individual TTGlyph elements.
|
contains references to the individual TTGlyph elements.
|
||||||
|
NOTE: specifying -g implies -s (no need for -s together with -g)
|
||||||
-i Do NOT disassemble TT instructions: when this option is given,
|
-i Do NOT disassemble TT instructions: when this option is given,
|
||||||
all TrueType programs (glyph programs, the font program and the
|
all TrueType programs (glyph programs, the font program and the
|
||||||
pre-program) will be written to the TTX file as hex data
|
pre-program) will be written to the TTX file as hex data
|
||||||
@ -165,7 +166,9 @@ class Options(object):
|
|||||||
elif option == "-s":
|
elif option == "-s":
|
||||||
self.splitTables = True
|
self.splitTables = True
|
||||||
elif option == "-g":
|
elif option == "-g":
|
||||||
|
# -g implies (and forces) splitTables
|
||||||
self.splitGlyphs = True
|
self.splitGlyphs = True
|
||||||
|
self.splitTables = True
|
||||||
elif option == "-i":
|
elif option == "-i":
|
||||||
self.disassembleInstructions = False
|
self.disassembleInstructions = False
|
||||||
elif option == "-z":
|
elif option == "-z":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user