Uses of Interface
org.apache.fontbox.FontBoxFont
-
Packages that use FontBoxFont Package Description org.apache.fontbox.cff This package holds classes used to parse CFF/Type2-Fonts (aka Type1C-Fonts).org.apache.fontbox.ttf This package contains classes to parse a TTF file.org.apache.fontbox.type1 This package holds classes used to parse Type1-Fonts.org.apache.pdfbox.pdmodel.font Classes to deal with font functionality in a PDF Document. -
-
Uses of FontBoxFont in org.apache.fontbox.cff
Classes in org.apache.fontbox.cff that implement FontBoxFont Modifier and Type Class Description class
CFFCIDFont
A Type 0 CIDFont represented in a CFF file.class
CFFFont
An Adobe Compact Font Format (CFF) font.class
CFFType1Font
A Type 1-equivalent font program represented in a CFF file. -
Uses of FontBoxFont in org.apache.fontbox.ttf
Classes in org.apache.fontbox.ttf that implement FontBoxFont Modifier and Type Class Description class
OpenTypeFont
An OpenType (OTF/TTF) font.class
TrueTypeFont
A TrueType font file. -
Uses of FontBoxFont in org.apache.fontbox.type1
Classes in org.apache.fontbox.type1 that implement FontBoxFont Modifier and Type Class Description class
Type1Font
Represents an Adobe Type 1 (.pfb) font. -
Uses of FontBoxFont in org.apache.pdfbox.pdmodel.font
Classes in org.apache.pdfbox.pdmodel.font with type parameters of type FontBoxFont Modifier and Type Class Description class
FontMapping<T extends FontBoxFont>
A font mapping from a PDF font to a FontBox font.Fields in org.apache.pdfbox.pdmodel.font declared as FontBoxFont Modifier and Type Field Description private T
FontMapping. font
private FontBoxFont
PDType1CFont. genericFont
private FontBoxFont
PDType1Font. genericFont
embedded or system font for rendering.private FontBoxFont
PDCIDFontType0. t1Font
private FontBoxFont
CIDFontMapping. ttf
Fields in org.apache.pdfbox.pdmodel.font with type parameters of type FontBoxFont Modifier and Type Field Description private java.util.Map<FontInfo,java.lang.ref.SoftReference<FontBoxFont>>
FontCache. cache
Methods in org.apache.pdfbox.pdmodel.font that return FontBoxFont Modifier and Type Method Description private FontBoxFont
FontMapperImpl. findFont(FontFormat format, java.lang.String postScriptName)
Finds a font with the given PostScript name, or a suitable substitute, or null.private FontBoxFont
FontMapperImpl. findFontBoxFont(java.lang.String postScriptName)
Finds a font with the given PostScript name, or a suitable substitute, or null.FontBoxFont
FileSystemFontProvider.FSFontInfo. getFont()
Returns a new FontBox font instance for the font.FontBoxFont
FontCache. getFont(FontInfo info)
Returns the FontBox font associated with the given FontInfo.abstract FontBoxFont
FontInfo. getFont()
Returns a new FontBox font instance for the font.FontBoxFont
PDCIDFontType0. getFontBoxFont()
Returns the embedded or substituted font.abstract FontBoxFont
PDSimpleFont. getFontBoxFont()
Returns the embedded or system font used for rendering.FontBoxFont
PDTrueTypeFont. getFontBoxFont()
FontBoxFont
PDType1CFont. getFontBoxFont()
FontBoxFont
PDType1Font. getFontBoxFont()
FontBoxFont
PDType3Font. getFontBoxFont()
FontBoxFont
CIDFontMapping. getTrueTypeFont()
Returns a TrueType font when isCIDFont() is true, otherwise null.Methods in org.apache.pdfbox.pdmodel.font that return types with arguments of type FontBoxFont Modifier and Type Method Description FontMapping<FontBoxFont>
FontMapper. getFontBoxFont(java.lang.String baseFont, PDFontDescriptor fontDescriptor)
Finds a font with the given PostScript name, or a suitable substitute, or null.FontMapping<FontBoxFont>
FontMapperImpl. getFontBoxFont(java.lang.String baseFont, PDFontDescriptor fontDescriptor)
Finds a font with the given PostScript name, or a suitable substitute, or null.Methods in org.apache.pdfbox.pdmodel.font with parameters of type FontBoxFont Modifier and Type Method Description void
FontCache. addFont(FontInfo info, FontBoxFont font)
Adds the given FontBox font to the cache.Constructors in org.apache.pdfbox.pdmodel.font with parameters of type FontBoxFont Constructor Description CIDFontMapping(OpenTypeFont font, FontBoxFont fontBoxFont, boolean isFallback)
-