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 StringgetAdobeServerFontDirectory()Location of directory which stores the Adobe provided fontsStringgetCustomerFontDirectory()Location of directory which stores the Customer provided fontsPDFFontSetgetPdfFontSet()Returns the PDFFontSet constructed from reading all the fonts found in all the configured font directoryStringgetSystemFontDirectory()Location of the System Fonts directory.
-
-
-
Method Detail
-
getSystemFontDirectory
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
String getAdobeServerFontDirectory()
Location of directory which stores the Adobe provided fonts- Returns:
- absolute path for the font directory
-
getCustomerFontDirectory
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
-
-