VORG: Vertical Origin table

The VORG table is an OpenType table.

class fontTools.ttLib.tables.V_O_R_G_.table_V_O_R_G_(tag=None)[source]

Bases: DefaultTable

Vertical Origin table

The VORG table contains the vertical origin of each glyph in a CFF or CFF2 font.

This table is structured so that you can treat it like a dictionary keyed by glyph name.

ttFont['VORG'][<glyphName>] will return the vertical origin for any glyph.

ttFont['VORG'][<glyphName>] = <value> will set the vertical origin for any glyph.

See also https://learn.microsoft.com/en-us/typography/opentype/spec/vorg

decompile(data, ttFont)[source]
compile(ttFont)[source]
toXML(writer, ttFont)[source]
fromXML(name, attrs, content, ttFont)[source]
subset_glyphs(s)
class fontTools.ttLib.tables.V_O_R_G_.VOriginRecord(name=None, vOrigin=None)[source]

Bases: object

toXML(writer, ttFont)[source]
fromXML(name, attrs, content, ttFont)[source]