Package org.verapdf.pd.font.truetype
Class TrueTypeFontProgram
java.lang.Object
org.verapdf.pd.font.truetype.BaseTrueTypeProgram
org.verapdf.pd.font.truetype.TrueTypeFontProgram
- All Implemented Interfaces:
FontProgram
Represents TrueTypeFontProgram.
- Author:
- Sergey Shemyakov
-
Field Summary
Fields inherited from class org.verapdf.pd.font.truetype.BaseTrueTypeProgram
encodingMappingArray, parser, widths -
Constructor Summary
ConstructorsConstructorDescriptionTrueTypeFontProgram(ASInputStream stream, boolean isSymbolic, COSObject encoding) Constructor from stream containing font data, and encoding details. -
Method Summary
Modifier and TypeMethodDescriptionbooleancontainsCID(int cid) Method works only for fonts where cid notation is used.booleancontainsCode(int code) Checks if font contains character with given code.booleancontainsGlyph(String glyphName) Checks if this font program has glyph for given glyph name.getGlyphName(int code) Returns glyph name for glyph with given code.floatgetWidth(int code) Returns width of glyph for given character code.floatReturns width of glyph for given glyph name.booleanvoidParses True Type font from given stream and extracts all the data needed.Methods inherited from class org.verapdf.pd.font.truetype.BaseTrueTypeProgram
getAscent, getDescent, getFontProgramResource, getNGlyphs, getNrOfCMaps, getWeight, getWidthWithCheck, isAttemptedParsing, isCmapPresent, isSuccessfulParsingMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.verapdf.pd.font.FontProgram
getAscent, getDescent, getFontProgramResource, getWeight, isAttemptedParsing, isSuccessfulParsing
-
Constructor Details
-
TrueTypeFontProgram
public TrueTypeFontProgram(ASInputStream stream, boolean isSymbolic, COSObject encoding) throws IOException Constructor from stream containing font data, and encoding details.- Parameters:
stream- is stream containing font data.isSymbolic- is true if font is marked as symbolic.encoding- is value of /Encoding in font dictionary.- Throws:
IOException- if creation of @{link SeekableStream} fails.
-
-
Method Details
-
parseFont
Description copied from class:BaseTrueTypeProgramParses True Type font from given stream and extracts all the data needed.- Specified by:
parseFontin interfaceFontProgram- Overrides:
parseFontin classBaseTrueTypeProgram- Throws:
IOException- if stream-reading error occurs.
-
containsCode
public boolean containsCode(int code) Checks if font contains character with given code.- Specified by:
containsCodein interfaceFontProgram- Parameters:
code- is character code.- Returns:
- true if font contains character with given code.
-
getWidth
public float getWidth(int code) Returns width of glyph for given character code.- Specified by:
getWidthin interfaceFontProgram- Parameters:
code- is code for glyph.- Returns:
- width of corresponding glyph or -1 if glyph is not found.
-
getGlyphName
Description copied from interface:FontProgramReturns glyph name for glyph with given code.- Specified by:
getGlyphNamein interfaceFontProgram- Parameters:
code- is code of glyph.- Returns:
- glyph name.
-
getWidth
Returns width of glyph for given glyph name.- Specified by:
getWidthin interfaceFontProgram- Parameters:
glyphName- is name for glyph.- Returns:
- width of corresponding glyph or -1 if glyph is not found.
-
containsGlyph
Description copied from interface:FontProgramChecks if this font program has glyph for given glyph name.- Specified by:
containsGlyphin interfaceFontProgram- Parameters:
glyphName- is the name of glyph.- Returns:
- true if this font program has glyph for given name.
-
isSymbolic
public boolean isSymbolic()- Returns:
- true if font is symbolic.
-
containsCID
public boolean containsCID(int cid) Description copied from interface:FontProgramMethod works only for fonts where cid notation is used.- Specified by:
containsCIDin interfaceFontProgram- Returns:
- true if font a is cid font and contains given cid.
-
getCIDList
- Specified by:
getCIDListin interfaceFontProgram
-