HomeSort by relevance Sort by last modified time
    Searched refs:TTFont (Results 1 - 11 of 11) sorted by null

  /external/noto-fonts/other/
adjust_vertical_metrics.py 25 font = ttLib.TTFont(font_file)
  /external/fonttools/Lib/fontTools/pens/
reportLabPen.py 44 from fontTools.ttLib import TTFont
54 font = TTFont(path) # it would work just as well with fontTools.t1Lib.T1Font
  /external/noto-fonts/cjk/
subset_noto_cjk.py 83 font = ttLib.TTFont(infile)
  /external/fonttools/Lib/fontTools/
ttx.py 71 from fontTools.ttLib import TTFont, TTLibError
174 ttf = TTFont(input, fontNumber=options.fontNumber, lazy=True)
195 ttf = TTFont(input, 0, verbose=options.verbose, allowVID=options.allowVID,
212 ttf = TTFont(options.mergeFile,
inspect.py 26 if isinstance(value, ttLib.TTFont):
62 if isinstance(v, ttLib.TTFont):
237 self.font = ttLib.TTFont(fontfile, lazy=True)
merge.py 714 mega = ttLib.TTFont()
719 fonts = [ttLib.TTFont(fontfile) for fontfile in fontfiles]
725 fonts = [ttLib.TTFont(fontfile) for fontfile in fontfiles]
subset.py     [all...]
  /external/fonttools/Lib/fontTools/ttLib/
macUtils.py 39 """Given a pathname, return a list of TTFont objects. In the case
48 fonts.append(ttLib.TTFont(path))
51 fonts.append(ttLib.TTFont(path, index))
81 def __init__(self, path, ttFont, res_id=None):
85 fullname = ttFont['name'].getName(4, 1, 0) # Full name, mac, default encoding
86 familyname = ttFont['name'].getName(1, 1, 0) # Fam. name, mac, default encoding
87 psname = ttFont['name'].getName(6, 1, 0) # PostScript name, etc.
102 self.ttFont = ttFont
127 del self.ttFont
    [all...]
__init__.py 12 >>> tt = ttLib.TTFont("afont.ttf")
36 >>> tt2 = ttLib.TTFont()
60 class TTFont(object):
89 The TTFont constructor can also be called without a 'file'
255 writer.begintag("ttFont", sfntVersion=repr(self.sfntVersion)[1:-1],
273 tableWriter.begintag("ttFont", ttLibVersion=version)
282 tableWriter.endtag("ttFont")
287 writer.endtag("ttFont")
669 to CFF's CharString dict. See TTFont.getGlyphSet().
676 def __init__(self, ttFont)
    [all...]
  /frameworks/base/tools/fonts/
fontchain_linter.py 80 return ttLib.TTFont(font_path, fontNumber=index)
82 return ttLib.TTFont(font_path)
86 ttfont = open_font(font)
89 for cmap in ttfont['cmap'].tables:
103 ttfont = open_font(font)
105 for cmap in ttfont['cmap'].tables:
128 ttfont = open_font(font)
129 for lookup in ttfont['GSUB'].table.LookupList.Lookup:
  /external/noto-fonts/emoji-compat/
createfont.py 607 with contextlib.closing(ttLib.TTFont(self.font_path, recalcTimestamp=False)) as ttf:

Completed in 420 milliseconds