Class PDFSimpleFontValuesAccessor
java.lang.Object
com.adobe.fontengine.fontmanagement.PDFSimpleFontValuesAccessor
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract doubleThe /Ascent of the /FontDescriptor.abstract doubleThe /CapHeight of the /FontDescriptor.abstract doubleThe /Descent of the /FontDescriptor.abstract intgetFlags()The /Flag of the /FontDescriptor.abstract RectThe /FontBBox of the /FontDescriptor.abstract StringThe /FontFamily of the /FontDescriptor.abstract CSS20Attribute.CSSStretchValueThe /FontStretch of the /FontDescriptor.abstract intThe /FontWeight of the /FontDescriptor.abstract StringgetGlyphName(int characterCode) The name of a glyph.abstract doublegetGlyphWidth(int characterCode) The advance width of a glyph.abstract doubleThe /ItalicAngle of the /FontDescriptor.abstract doubleThe /Leading of the /FontDescriptor.abstract StringThe Postscript name of the font.abstract doublegetStemV()The /StemV of the /FontDescriptor.abstract doubleThe /XHeight of the /FontDescriptor
-
Constructor Details
-
PDFSimpleFontValuesAccessor
public PDFSimpleFontValuesAccessor()
-
-
Method Details
-
getFontFamily
The /FontFamily of the /FontDescriptor. -
getPostscriptName
The Postscript name of the font. This should be the full font Postscript name, not the subset Postscript name. -
getFontBBox
The /FontBBox of the /FontDescriptor. -
getFlags
The /Flag of the /FontDescriptor. -
getCapHeight
The /CapHeight of the /FontDescriptor. -
getXHeight
The /XHeight of the /FontDescriptor -
getAscent
The /Ascent of the /FontDescriptor. -
getDescent
The /Descent of the /FontDescriptor. -
getLeading
The /Leading of the /FontDescriptor. -
getStemV
The /StemV of the /FontDescriptor. -
getItalicAngle
The /ItalicAngle of the /FontDescriptor. -
getFontStretch
public abstract CSS20Attribute.CSSStretchValue getFontStretch() throws InvalidFontException, UnsupportedFontExceptionThe /FontStretch of the /FontDescriptor. -
getFontWeight
The /FontWeight of the /FontDescriptor. -
getGlyphName
public abstract String getGlyphName(int characterCode) throws InvalidFontException, UnsupportedFontException The name of a glyph. Called if the font is non-symbolic. -
getGlyphWidth
public abstract double getGlyphWidth(int characterCode) throws InvalidFontException, UnsupportedFontException The advance width of a glyph.
-