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

  /external/fonttools/Tests/ttLib/
woff2_test.py 174 glyfTable = ttLib.newTable('glyf')
175 glyfTable.decompile(font.getTableData('glyf'), font)
176 glyfTable.padding = padding
178 tableData = glyfTable.compile(font)
180 glyfTable.compile(font)
183 glyfTable.compile(font)
629 glyfTable = WOFF2GlyfTable()
630 glyfTable.reconstruct(self.transformedGlyfData, self.font)
631 glyfTable.padding = 4
632 data = glyfTable.compile(self.font
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_m_a_x_p.py 61 glyfTable = ttFont['glyf']
64 self.numGlyphs = len(glyfTable)
78 g = glyfTable[glyphName]
91 nPoints, nContours, componentDepth = g.getCompositeMaxpValues(glyfTable)
_h_h_e_a.py 55 glyfTable = ttFont['glyf']
57 g = glyfTable[name]
63 g.recalcBounds(glyfTable)
_v_h_e_a.py 54 glyfTable = ttFont['glyf']
56 g = glyfTable[name]
62 g.recalcBounds(glyfTable)
_g_l_y_f.py 359 def compact(self, glyfTable, recalcBBoxes=True):
360 data = self.compile(glyfTable, recalcBBoxes)
364 def expand(self, glyfTable):
381 self.decompileComponents(data, glyfTable)
385 def compile(self, glyfTable, recalcBBoxes=True):
389 self.expand(glyfTable)
395 self.recalcBounds(glyfTable)
398 data = data + self.compileComponents(glyfTable)
482 def getCompositeMaxpValues(self, glyfTable, maxComponentDepth=1):
487 baseGlyph = glyfTable[compo.glyphName
    [all...]
  /external/fonttools/Tests/ttLib/tables/
_g_l_y_f_test.py 206 glyfTable = font['glyf'] = newTable('glyf')
213 glyfTable.decompile(self.glyfData, font)
222 glyfTable = font['glyf']
223 glyfData = glyfTable.compile(font)
  /external/fonttools/Tests/pens/
ttGlyphPen_test.py 23 glyfTable = font['glyf']
36 oldGlyph.compile(glyfTable), newGlyph.compile(glyfTable))
  /external/fonttools/Lib/fontTools/ttLib/
woff2.py 112 glyfTable = self.ttFont['glyf'] = WOFF2GlyfTable()
113 glyfTable.reconstruct(data, self.ttFont)
115 glyfTable.padding = padding
116 data = glyfTable.compile(self.ttFont)
317 glyfTable = self.ttFont['glyf']
318 data = glyfTable.transform(self.ttFont)
    [all...]
ttFont.py 771 glyfTable = self._glyphset._glyphs
774 glyph.draw(pen, glyfTable, offset)
780 glyfTable = self._glyphset._glyphs
783 glyph.drawPoints(pen, glyfTable, offset)

Completed in 228 milliseconds