Interface FontManagerService
-
public interface FontManagerServiceTheFontManagerServiceprovides access to font related information. It also manages thePDFFontSetcreated from all the fonts found in configured directories
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAdobeServerFontDirectory()Location of directory which stores the Adobe provided fontsjava.lang.StringgetCustomerFontDirectory()Location of directory which stores the Customer provided fontsPDFFontSetgetPdfFontSet()Returns the PDFFontSet constructed from reading all the fonts found in all the configured font directoryjava.lang.StringgetSystemFontDirectory()Location of the System Fonts directory.
-
-
-
Method Detail
-
getSystemFontDirectory
java.lang.String getSystemFontDirectory()
Location of the System Fonts directory. If more than one system directory is configured then it would return a concatenated string where paths are delimited by semicolon (;)- Returns:
- absolute path for the font directory.
-
getAdobeServerFontDirectory
java.lang.String getAdobeServerFontDirectory()
Location of directory which stores the Adobe provided fonts- Returns:
- absolute path for the font directory
-
getCustomerFontDirectory
java.lang.String getCustomerFontDirectory()
Location of directory which stores the Customer provided fonts- Returns:
- absolute path for the font directory
-
getPdfFontSet
PDFFontSet getPdfFontSet()
Returns the PDFFontSet constructed from reading all the fonts found in all the configured font directory- Returns:
- generated PDFFontSet from the configured directories
-
-