Uses of Class
org.pdfbox.pdmodel.font.PDFont

Packages that use PDFont
org.pdfbox.pdmodel.edit The PDModel edit package will be used to store classes for creating page content. 
org.pdfbox.pdmodel.font Classes to deal with font functionality in a PDF Document. 
org.pdfbox.pdmodel.graphics The PDModel graphics package deals with graphics states, operations, and parameters within the PDF document. 
org.pdfbox.pdmodel.text The PDModel text package deals with text states, operations, and parameters within the PDF document. 
org.pdfbox.util This package contains utility classes that are used by the PDFBox project. 
 

Uses of PDFont in org.pdfbox.pdmodel.edit
 

Methods in org.pdfbox.pdmodel.edit with parameters of type PDFont
 void PDPageContentStream.setFont(PDFont font, float fontSize)
          Set the font to draw text with.
 

Uses of PDFont in org.pdfbox.pdmodel.font
 

Subclasses of PDFont in org.pdfbox.pdmodel.font
 class PDCIDFont
          This is implementation for the CIDFontType0/CIDFontType2 Fonts.
 class PDCIDFontType0Font
          This is implementation of the CIDFontType0 Font.
 class PDCIDFontType2Font
          This is implementation of the CIDFontType2 Font.
 class PDMMType1Font
          This is implementation of the Multiple Master Type1 Font.
 class PDSimpleFont
          This class contains implementation details of the simple pdf fonts.
 class PDTrueTypeFont
          This is the TrueType implementation of fonts.
 class PDType0Font
          This is implementation of the Type0 Font.
 class PDType1AfmPfbFont
          This is implementation of the Type1 Font with a afm and a pfb file.
 class PDType1Font
          This is implementation of the Type1 Font.
 class PDType3Font
          This is implementation of the Type3 Font.
 

Methods in org.pdfbox.pdmodel.font that return PDFont
static PDFont PDFontFactory.createFont(COSDictionary dic, Map fontCache)
          Create a font from the dictionary.
static PDFont PDFontFactory.createFont(COSDictionary dic)
          This will create the correct font based on information in the dictionary.
 

Uses of PDFont in org.pdfbox.pdmodel.graphics
 

Methods in org.pdfbox.pdmodel.graphics that return PDFont
 PDFont PDFontSetting.getFont()
          This will get the font for this font setting.
 

Methods in org.pdfbox.pdmodel.graphics with parameters of type PDFont
 void PDFontSetting.setFont(PDFont font)
          This will set the font for this font setting.
 

Uses of PDFont in org.pdfbox.pdmodel.text
 

Methods in org.pdfbox.pdmodel.text that return PDFont
 PDFont PDTextState.getFont()
          Get the value of the font.
 

Methods in org.pdfbox.pdmodel.text with parameters of type PDFont
 void PDTextState.setFont(PDFont value)
          Set the value of the font.
 

Uses of PDFont in org.pdfbox.util
 

Methods in org.pdfbox.util that return PDFont
 PDFont TextPosition.getFont()
          This will get the font for the text being drawn.
 

Constructors in org.pdfbox.util with parameters of type PDFont
TextPosition(float xPos, float yPos, float xScl, float yScl, float widthValue, float heightValue, float spaceWidth, String string, PDFont currentFont, float fontSizeValue, float ws)
          Constructor.