Package org.verapdf.pd.font.cff
Class CFFFontProgram
java.lang.Object
org.verapdf.pd.font.cff.CFFFontProgram
- All Implemented Interfaces:
FontProgram
This class starts parsing for all inner CFF fonts and contains fonts parsed.
- Author:
- Sergey Shemyakov
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCFFFontProgram(ASInputStream stream, CMap cMap, boolean isSubset) Constructor from stream. -
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.getFont()getGlyphName(int code) Returns glyph name for glyph with given code.protected StringgetStringBySID(int sid) floatgetWidth(int code) Returns width of glyph for given character code.floatReturns width of glyph for given glyph name.booleanbooleanbooleanvoidThis method does parsing of font, after it all the data needed should be extracted.protected intprotected intprotected voidprotected CFFIndexprotected CFFNumber
-
Field Details
-
source
-
definedNames
-
-
Constructor Details
-
CFFFontProgram
Constructor from stream.- Parameters:
stream- is stream with CFF program.- Throws:
IOException- if creation of @{link SeekableStream} fails.
-
-
Method Details
-
parseFont
This method does parsing of font, after it all the data needed should be extracted.- Specified by:
parseFontin interfaceFontProgram- Throws:
IOException- if error in font parsing occurs.
-
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.
-
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.
-
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.
-
isCIDFont
public boolean isCIDFont()- Returns:
- true if this font is CFF CID font.
-
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.
-
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.
-
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.
-
isAttemptedParsing
public boolean isAttemptedParsing()- Specified by:
isAttemptedParsingin interfaceFontProgram- Returns:
- true if font parsing has been attempted.
-
isSuccessfulParsing
public boolean isSuccessfulParsing()- Specified by:
isSuccessfulParsingin interfaceFontProgram- Returns:
- true if font was successfully parsed.
-
getCIDList
- Specified by:
getCIDListin interfaceFontProgram
-
getFont
- Returns:
- CID font or Type1 font that is presented by CFF program.
-
getFontProgramResource
- Specified by:
getFontProgramResourcein interfaceFontProgram- Returns:
- file stream closer that handles the closing of font program stream or null if stream is memory stream.
-
getWeight
- Specified by:
getWeightin interfaceFontProgram
-
getAscent
- Specified by:
getAscentin interfaceFontProgram
-
getDescent
- Specified by:
getDescentin interfaceFontProgram
-
readCard8
- Throws:
IOException
-
readCard16
- Throws:
IOException
-
readIndex
- Throws:
IOException
-
readHeader
- Throws:
IOException
-
readNumber
- Throws:
IOException
-
getStringBySID
- Throws:
IOException
-