Interface PDVectorFont
-
- All Known Implementing Classes:
PDCIDFont,PDCIDFontType0,PDCIDFontType2,PDTrueTypeFont,PDType0Font
public interface PDVectorFontA vector outline font, e.g. not Type 3.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PathgetPath(int code)Returns the glyph path for the given character code in a PDF.booleanhasGlyph(int code)Returns true if this font contains a glyph for the given character code in a PDF.
-
-
-
Method Detail
-
getPath
Path getPath(int code) throws IOException
Returns the glyph path for the given character code in a PDF.- Parameters:
code- character code in a PDF. Not to be confused with unicode.- Throws:
IOException- if the font could not be read
-
hasGlyph
boolean hasGlyph(int code) throws IOExceptionReturns true if this font contains a glyph for the given character code in a PDF.- Parameters:
code- character code in a PDF. Not to be confused with unicode.- Throws:
IOException
-
-