Uses of Class
org.apache.fontbox.ttf.TTFTable
-
Packages that use TTFTable Package Description org.apache.fontbox.ttf This package contains classes to parse a TTF file. -
-
Uses of TTFTable in org.apache.fontbox.ttf
Subclasses of TTFTable in org.apache.fontbox.ttf Modifier and Type Class Description class
CFFTable
PostScript font program (compact font format).class
CmapTable
The "cmap" table of a true type font.class
DigitalSignatureTable
A table in a true type font.class
GlyphSubstitutionTable
A glyph substitution 'GSUB' table in a TrueType or OpenType font.class
GlyphTable
A table in a true type font.class
HeaderTable
A table in a true type font.class
HorizontalHeaderTable
A table in a true type font.class
HorizontalMetricsTable
A table in a true type font.class
IndexToLocationTable
A table in a true type font.class
KerningTable
A 'kern' table in a true type font.class
MaximumProfileTable
A table in a true type font.class
NamingTable
A table in a true type font.class
OS2WindowsMetricsTable
The OS/2 and Windows Metrics Table in a TrueType font, see here.class
OTLTable
OpenType Layout (OTL) table.class
PostScriptTable
A table in a true type font.class
VerticalHeaderTable
A vertical header 'vhea' table in a TrueType or OpenType font.class
VerticalMetricsTable
A vertical metrics 'vmtx' table in a TrueType or OpenType font.class
VerticalOriginTable
A vertical origin 'VORG' table in an OpenType font.Fields in org.apache.fontbox.ttf with type parameters of type TTFTable Modifier and Type Field Description protected java.util.Map<java.lang.String,TTFTable>
TrueTypeFont. tables
Methods in org.apache.fontbox.ttf that return TTFTable Modifier and Type Method Description protected TTFTable
TrueTypeFont. getTable(java.lang.String tag)
This will get the table for the given tag.protected TTFTable
OTFParser. readTable(TrueTypeFont font, java.lang.String tag)
protected TTFTable
TTFParser. readTable(TrueTypeFont font, java.lang.String tag)
private TTFTable
TTFParser. readTableDirectory(TrueTypeFont font, TTFDataStream raf)
Methods in org.apache.fontbox.ttf that return types with arguments of type TTFTable Modifier and Type Method Description java.util.Map<java.lang.String,TTFTable>
TrueTypeFont. getTableMap()
Get all of the tables.java.util.Collection<TTFTable>
TrueTypeFont. getTables()
Get all of the tables.Methods in org.apache.fontbox.ttf with parameters of type TTFTable Modifier and Type Method Description (package private) void
TrueTypeFont. addTable(TTFTable table)
Add a table definition.byte[]
TrueTypeFont. getTableBytes(TTFTable table)
Returns the raw bytes of the given table.(package private) void
TrueTypeFont. readTable(TTFTable table)
Read the given table if necessary.
-