Interface FontManagerService
-
public interface FontManagerService
TheFontManagerService
provides access to font related information. It also manages thePDFFontSet
created from all the fonts found in configured directories
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getAdobeServerFontDirectory()
Location of directory which stores the Adobe provided fontsjava.lang.String
getCustomerFontDirectory()
Location of directory which stores the Customer provided fontsPDFFontSet
getPdfFontSet()
Returns the PDFFontSet constructed from reading all the fonts found in all the configured font directoryjava.lang.String
getSystemFontDirectory()
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
-
-