Class PDFFontSetManager
- java.lang.Object
-
- com.adobe.internal.pdftoolkit.core.fontset.PDFFontSetManager
-
public class PDFFontSetManager extends java.lang.Object
Provides methods to acquire a PDFFontSet object.
-
-
Constructor Summary
Constructors Constructor Description PDFFontSetManager()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PDFFontSet
getPDFFontSetInstance()
Build a defaultPDFFontSet
.static PDFFontSet
getPDFFontSetInstance(FontResolutionPriority priority)
Build a defaultPDFFontSet
.static PDFFontSet
getPDFFontSetInstance(PDFFontSet original)
Build a fontset using the given fontset as a template.
-
-
-
Method Detail
-
getPDFFontSetInstance
public static final PDFFontSet getPDFFontSetInstance() throws PDFFontException
Build a defaultPDFFontSet
. This fontset uses theINTELLIGENT_LAST
resolution priority.- Returns:
- a default
PDFFontSet
- Throws:
PDFFontException
-
getPDFFontSetInstance
public static final PDFFontSet getPDFFontSetInstance(FontResolutionPriority priority) throws PDFFontException
Build a defaultPDFFontSet
.- Returns:
- a default
PDFFontSet
- Throws:
PDFFontException
-
getPDFFontSetInstance
public static final PDFFontSet getPDFFontSetInstance(PDFFontSet original) throws PDFFontException
Build a fontset using the given fontset as a template. This new fontset will not refer to the original and both may be changed without interferring with the other.- Parameters:
original
- the fontset to use as a template; must be a fontset made using thePDFFontSetManager
- Returns:
- a clone of the original fontset
- Throws:
PDFFontException
-
-