Method Summary |
|
abstract public float | getAscent() This will get the ascent for the font. |
abstract public float | getAverageWidth() This will get the average width for the font. |
abstract public float | getCapHeight() This will get the CapHeight for the font. |
abstract public String | getCharSet() This will get the character set for the font. |
abstract public float | getDescent() This will get the descent for the font. |
abstract public int | getFlags() This will get the font flags. |
abstract public PDRectangle | getFontBoundingBox() This will get the fonts bouding box. |
abstract public String | getFontFamily() A string representing the preferred font family. |
abstract public String | getFontName() Get the font name. |
abstract public String | getFontStretch() A string representing the preferred font stretch. |
abstract public float | getFontWeight() The weight of the font. |
abstract public float | getItalicAngle() This will get the italic angle for the font. |
abstract public float | getLeading() This will get the leading for the font. |
abstract public float | getMaxWidth() This will get the max width for the font. |
abstract public float | getStemH() This will get the stemH for the font. |
abstract public float | getStemV() This will get the stemV for the font. |
abstract public float | getXHeight() This will get the x height for the font. |
public boolean | isAllCap() A convenience method that checks the flag bit. |
public boolean | isFixedPitch() A convenience method that checks the flag bit. |
public boolean | isForceBold() A convenience method that checks the flag bit. |
public boolean | isItalic() A convenience method that checks the flag bit. |
public boolean | isNonSymbolic() A convenience method that checks the flag bit. |
public boolean | isScript() A convenience method that checks the flag bit. |
public boolean | isSerif() A convenience method that checks the flag bit. |
public boolean | isSmallCap() A convenience method that checks the flag bit. |
public boolean | isSymbolic() A convenience method that checks the flag bit. |
public void | setAllCap(boolean flag) A convenience method that sets the flag bit. |
abstract public void | setAscent(float ascent) This will set the ascent for the font. |
abstract public void | setAverageWidth(float averageWidth) This will set the average width for the font. |
abstract public void | setCapHeight(float capHeight) This will set the cap height for the font. |
abstract public void | setCharacterSet(String charSet) This will set the character set for the font. |
abstract public void | setDescent(float descent) This will set the descent for the font. |
public void | setFixedPitch(boolean flag) A convenience method that sets the flag bit. |
abstract public void | setFlags(int flags) This will set the font flags. |
abstract public void | setFontBoundingBox(PDRectangle rect) Set the fonts bounding box. |
abstract public void | setFontFamily(String fontFamily) This will set the font family. |
abstract public void | setFontName(String fontName) This will set the font name. |
abstract public void | setFontStretch(String fontStretch) This will set the font stretch. |
abstract public void | setFontWeight(float fontWeight) Set the weight of the font. |
public void | setForceBold(boolean flag) A convenience method that sets the flag bit. |
public void | setItalic(boolean flag) A convenience method that sets the flag bit. |
abstract public void | setItalicAngle(float angle) This will set the italic angle for the font. |
abstract public void | setLeading(float leading) This will set the leading for the font. |
abstract public void | setMaxWidth(float maxWidth) This will set the max width for the font. |
public void | setNonSymbolic(boolean flag) A convenience method that sets the flag bit. |
public void | setScript(boolean flag) A convenience method that sets the flag bit. |
public void | setSerif(boolean flag) A convenience method that sets the flag bit. |
public void | setSmallCap(boolean flag) A convenience method that sets the flag bit. |
abstract public void | setStemH(float stemH) This will set the stem H for the font. |
abstract public void | setStemV(float stemV) This will set the stem V for the font. |
public void | setSymbolic(boolean flag) A convenience method that sets the flag bit. |
abstract public void | setXHeight(float xHeight) This will set the x height for the font. |