Package com.itextpdf.layout.font
Class FontProvider
java.lang.Object
com.itextpdf.layout.font.FontProvider
- Direct Known Subclasses:
-
BasicFontProvider
Main entry point of font selector logic. Contains reusable
FontSet
and collection of PdfFont
s. FontProvider depends on PdfDocument
due to PdfFont
, so it cannot be reused for different documents unless reset with reset()
or recreated with getFontSet()
. In the former case the FontSelectorCache
is reused and in the latter it's reinitialised. FontProvider the only end point for creating PdfFont
.
It is allowed to use only one FontProvider
per document. If additional fonts per element needed, another instance of FontSet
can be used. For more details see Property.FONT_SET
, getPdfFont(FontInfo, FontSet)
, getStrategy(String, List, FontCharacteristics, FontSet)
.
Note, FontProvider does not close created FontProgram
s, because of possible conflicts with FontCache
.
-
Field Summary
Modifier and TypeFieldDescriptionprotected final String
The default font-family is used byFontSelector
if it's impossible to select a font for all other set font-families -
Constructor Summary
ConstructorDescriptionCreates a new instance of FontProvider.FontProvider
(FontSet fontSet) Creates a new instance of FontProvider.FontProvider
(FontSet fontSet, String defaultFontFamily) Creates a new instance of FontProvider.FontProvider
(String defaultFontFamily) Creates a new instance of FontProvider. -
Method Summary
Modifier and TypeMethodDescriptionint
addDirectory
(String dir) Add all the fonts from a directory.boolean
addFont
(byte[] fontData) Add font toFontSet
cache.boolean
Add font toFontSet
cache.boolean
Add font toFontSet
cache.boolean
addFont
(FontProgram fontProgram) Add font toFontSet
cache.boolean
addFont
(FontProgram fontProgram, String encoding) Add font toFontSet
cache.boolean
addFont
(FontProgram fontProgram, String encoding, Range unicodeRange) Add font toFontSet
cache.boolean
Add font toFontSet
cache.boolean
Add font toFontSet
cache.boolean
Add font toFontSet
cache.int
Add standard fonts toFontSet
cache.int
Add all fonts from system directories toFontSet
cache.protected FontSelector
createFontSelector
(Collection<FontInfo> fonts, List<String> fontFamilies, FontCharacteristics fc) Create a new instance ofFontSelector
.boolean
The method is used to determine whether the font should be cached or not by default.boolean
The method is used to determine whether the font should be embedded or not by default.getDefaultEncoding
(FontProgram fontProgram) Gets the default encoding for specific font.Gets the default font-family.final FontSelector
getFontSelector
(List<String> fontFamilies, FontCharacteristics fc) CreateFontSelector
or get from cache.final FontSelector
getFontSelector
(List<String> fontFamilies, FontCharacteristics fc, FontSet additionalFonts) CreateFontSelector
or get from cache.GetsFontSet
.getPdfFont
(FontInfo fontInfo) Get from cache or create a new instance ofPdfFont
.getPdfFont
(FontInfo fontInfo, FontSet additionalFonts) Get from cache or create a new instance ofPdfFont
.getStrategy
(String text, List<String> fontFamilies) Gets theFontSelectorStrategy
to split specified text into sequences of glyphs, already tied to the fonts which contain them.getStrategy
(String text, List<String> fontFamilies, FontCharacteristics fc) Gets theFontSelectorStrategy
to split specified text into sequences of glyphs, already tied to the fonts which contain them.getStrategy
(String text, List<String> fontFamilies, FontCharacteristics fc, FontSet additionalFonts) Gets theFontSelectorStrategy
to split specified text into sequences of glyphs, already tied to the fonts which contain them.void
reset()
ResetsPdfFont cache
.
-
Field Details
-
defaultFontFamily
The default font-family is used byFontSelector
if it's impossible to select a font for all other set font-families -
pdfFonts
-
-
Constructor Details
-
FontProvider
Creates a new instance of FontProvider.- Parameters:
-
fontSet
- predefined set of fonts, could be null.
-
FontProvider
public FontProvider()Creates a new instance of FontProvider. -
FontProvider
Creates a new instance of FontProvider.- Parameters:
-
defaultFontFamily
- default font family.
-
FontProvider
Creates a new instance of FontProvider.- Parameters:
-
fontSet
- predefined set of fonts, could be null. -
defaultFontFamily
- default font family.
-
-
Method Details
-
addFont
Add font toFontSet
cache.- Parameters:
-
fontProgram
- the font file which will be added to font cache. TheFontProgram
instances are normally created viaFontProgramFactory
. -
encoding
- font encoding to createPdfFont
. Possible values for this argument are the same as forPdfFontFactory.createFont()
family of methods. -
unicodeRange
- sets the specific range of characters to be used from the font. - Returns:
- true, if font was successfully added, otherwise false.
-
addFont
Add font toFontSet
cache.- Parameters:
-
fontProgram
- the font file which will be added to font cache. TheFontProgram
instances are normally created viaFontProgramFactory
. -
encoding
- font encoding to createPdfFont
. Possible values for this argument are the same as forPdfFontFactory.createFont()
family of methods. - Returns:
- true, if font was successfully added, otherwise false.
-
addFont
Add font toFontSet
cache.- Parameters:
-
fontProgram
- the font file which will be added to font cache. TheFontProgram
instances are normally created viaFontProgramFactory
. - Returns:
- true, if font was successfully added, otherwise false.
-
addFont
Add font toFontSet
cache.- Parameters:
-
fontPath
- path to the font file to add. Can be a path to file or font name, seeFontProgramFactory.createFont(String)
. -
encoding
- font encoding to createPdfFont
. Possible values for this argument are the same as forPdfFontFactory.createFont()
family of methods. -
unicodeRange
- sets the specific range of characters to be used from the font. - Returns:
- true, if font was successfully added, otherwise false.
-
addFont
Add font toFontSet
cache.- Parameters:
-
fontPath
- path to the font file to add. Can be a path to file or font name, seeFontProgramFactory.createFont(String)
. -
encoding
- font encoding to createPdfFont
. Possible values for this argument are the same as forPdfFontFactory.createFont()
family of methods. - Returns:
- true, if font was successfully added, otherwise false.
-
addFont
Add font toFontSet
cache.- Parameters:
-
fontPath
- path to the font file to add. Can be a path to file or font name, seeFontProgramFactory.createFont(String)
. - Returns:
- true, if font was successfully added, otherwise false.
-
addFont
Add font toFontSet
cache.- Parameters:
-
fontData
- byte content of the font program file. -
encoding
- font encoding to createPdfFont
. Possible values for this argument are the same as forPdfFontFactory.createFont()
family of methods. -
unicodeRange
- sets the specific range of characters to be used from the font. - Returns:
- true, if font was successfully added, otherwise false.
-
addFont
Add font toFontSet
cache.- Parameters:
-
fontData
- byte content of the font program file. -
encoding
- font encoding to createPdfFont
. Possible values for this argument are the same as forPdfFontFactory.createFont()
family of methods. - Returns:
- true, if font was successfully added, otherwise false.
-
addFont
public boolean addFont(byte[] fontData) Add font toFontSet
cache.- Parameters:
-
fontData
- byte content of the font program file. - Returns:
- true, if font was successfully added, otherwise false.
-
addDirectory
Add all the fonts from a directory.- Parameters:
-
dir
- path to directory. - Returns:
- number of added fonts.
-
addSystemFonts
public int addSystemFonts()Add all fonts from system directories toFontSet
cache.- Returns:
- number of added fonts.
-
addStandardPdfFonts
public int addStandardPdfFonts()Add standard fonts toFontSet
cache.- Returns:
- number of added fonts.
- See Also:
-
getFontSet
GetsFontSet
.- Returns:
- the font set
-
getDefaultFontFamily
Gets the default font-family.- Returns:
- the default font-family
-
getDefaultEncoding
Gets the default encoding for specific font.- Parameters:
-
fontProgram
- to get default encoding - Returns:
- the default encoding
- See Also:
-
getDefaultCacheFlag
public boolean getDefaultCacheFlag()The method is used to determine whether the font should be cached or not by default.NOTE: This method can be overridden to customize behaviour.
- Returns:
- the default cache flag
-
getDefaultEmbeddingFlag
public boolean getDefaultEmbeddingFlag()The method is used to determine whether the font should be embedded or not by default.NOTE: This method can be overridden to customize behaviour.
- Returns:
- the default embedding flag
-
getStrategy
public FontSelectorStrategy getStrategy(String text, List<String> fontFamilies, FontCharacteristics fc, FontSet additionalFonts) Gets theFontSelectorStrategy
to split specified text into sequences of glyphs, already tied to the fonts which contain them. The fonts can be taken from the added fonts to the font provider and are chosen based on font-families list and desired font characteristics.- Parameters:
-
text
- for splitting into sequences of glyphs. -
fontFamilies
- target font families to createFontSelector
for sequences of glyphs. -
fc
- instance ofFontCharacteristics
to createFontSelector
for sequences of glyphs. -
additionalFonts
- set which provides fonts additionally to the fonts added to font provider. Combined set of font provider fonts and additional fonts is used when choosing a single font for a sequence of glyphs. Additional fonts will only be used for the given font selector strategy instance and will not be otherwise preserved in font provider. - Returns:
-
FontSelectorStrategy
instance.
-
getStrategy
public FontSelectorStrategy getStrategy(String text, List<String> fontFamilies, FontCharacteristics fc) Gets theFontSelectorStrategy
to split specified text into sequences of glyphs, already tied to the fonts which contain them. The fonts can be taken from the added fonts to the font provider and are chosen based on font-families list and desired font characteristics.- Parameters:
-
text
- for splitting into sequences of glyphs. -
fontFamilies
- target font families to createFontSelector
for sequences of glyphs. -
fc
- instance ofFontCharacteristics
to createFontSelector
for sequences of glyphs. - Returns:
-
FontSelectorStrategy
instance.
-
getStrategy
Gets theFontSelectorStrategy
to split specified text into sequences of glyphs, already tied to the fonts which contain them. The fonts can be taken from the added fonts to the font provider and are chosen based on font-families list and desired font characteristics.- Parameters:
-
text
- for splitting into sequences of glyphs. -
fontFamilies
- target font families to createFontSelector
for sequences of glyphs. - Returns:
-
FontSelectorStrategy
instance.
-
getFontSelector
CreateFontSelector
or get from cache.- Parameters:
-
fontFamilies
- target font families. -
fc
- instance ofFontCharacteristics
. - Returns:
-
an instance of
FontSelector
. - See Also:
-
getFontSelector
public final FontSelector getFontSelector(List<String> fontFamilies, FontCharacteristics fc, FontSet additionalFonts) CreateFontSelector
or get from cache.- Parameters:
-
fontFamilies
- target font families. -
fc
- instance ofFontCharacteristics
. -
additionalFonts
- set which provides fonts additionally to the fonts added to font provider. Combined set of font provider fonts and additional fonts is used when choosing a single font forFontSelector
. Additional fonts will only be used for the given font selector strategy instance and will not be otherwise preserved in font provider. - Returns:
-
an instance of
FontSelector
. - See Also:
-
createFontSelector
protected FontSelector createFontSelector(Collection<FontInfo> fonts, List<String> fontFamilies, FontCharacteristics fc) Create a new instance ofFontSelector
. While caching is main responsibility ofgetFontSelector(List, FontCharacteristics, FontSet)
. This method just create a new instance ofFontSelector
.- Parameters:
-
fonts
- Set of all available fonts in current context. -
fontFamilies
- target font families. -
fc
- instance ofFontCharacteristics
. - Returns:
-
an instance of
FontSelector
.
-
getPdfFont
Get from cache or create a new instance ofPdfFont
.- Parameters:
-
fontInfo
- font info, to createFontProgram
andPdfFont
. - Returns:
-
cached or new instance of
PdfFont
.
-
getPdfFont
Get from cache or create a new instance ofPdfFont
.- Parameters:
-
fontInfo
- font info, to createFontProgram
andPdfFont
. -
additionalFonts
- set of additional fonts to consider. - Returns:
-
cached or new instance of
PdfFont
.
-
reset
public void reset()
-