public class PclSaveOptions extends FixedPageSaveOptions
SaveFormat.PCL format.
To learn more, visit the Specify Save Options documentation article.
| Modifier and Type | Method and Description |
|---|---|
void |
addPrinterFont(java.lang.String fontFullName,
java.lang.String fontPclName)
Adds information about font that is uploaded to the printer by manufacturer.
|
java.lang.String |
getFallbackFontName()
Name of the font that will be used if no expected font is found in printer and built-in fonts collections.
|
boolean |
getRasterizeTransformedElements()
Gets a value determining whether or not complex transformed elements should be rasterized before saving to PCL document.
|
int |
getSaveFormat()
Specifies the format in which the document will be saved if this save options object is used.
|
void |
setFallbackFontName(java.lang.String value)
Name of the font that will be used if no expected font is found in printer and built-in fonts collections.
|
void |
setRasterizeTransformedElements(boolean value)
Sets a value determining whether or not complex transformed elements should be rasterized before saving to PCL document.
|
void |
setSaveFormat(int value)
Specifies the format in which the document will be saved if this save options object is used.
|
equals, getColorMode, getJpegQuality, getMetafileRenderingOptions, getNumeralFormat, getOptimizeOutput, getPageSavingCallback, getPageSet, setColorMode, setJpegQuality, setMetafileRenderingOptions, setNumeralFormat, setOptimizeOutput, setPageSavingCallback, setPageSetcreateSaveOptions, createSaveOptions, getAllowEmbeddingPostScriptFonts, getDefaultTemplate, getDml3DEffectsRenderingMode, getDmlEffectsRenderingMode, getDmlRenderingMode, getExportGeneratorName, getImlRenderingMode, getMemoryOptimization, getPrettyFormat, getProgressCallback, getTempFolder, getUpdateCreatedTimeProperty, getUpdateFields, getUpdateLastPrintedProperty, getUpdateLastSavedTimeProperty, getUpdateSdtContent, getUseAntiAliasing, getUseHighQualityRendering, setAllowEmbeddingPostScriptFonts, setDefaultTemplate, setDml3DEffectsRenderingMode, setDmlEffectsRenderingMode, setDmlRenderingMode, setExportGeneratorName, setImlRenderingMode, setMemoryOptimization, setPrettyFormat, setProgressCallback, setTempFolder, setUpdateCreatedTimeProperty, setUpdateFields, setUpdateLastPrintedProperty, setUpdateLastSavedTimeProperty, setUpdateSdtContent, setUseAntiAliasing, setUseHighQualityRenderingpublic int getSaveFormat()
SaveFormat.PCL.getSaveFormat in class SaveOptionsint value. The returned value is one of SaveFormat constants.public void setSaveFormat(int value)
SaveFormat.PCL.setSaveFormat in class SaveOptionsvalue - The corresponding int value. The value must be one of SaveFormat constants.public boolean getRasterizeTransformedElements()
true.
PCL doesn't support some kind of transformations that are used by Aspose Words. E.g. rotated, skewed images and texture brushes. To properly render such elements rasterization process is used, i.e. saving to image and clipping. This process can take additional time and memory. If flag is set to false, some content in output may be different as compared with the source document.public void setRasterizeTransformedElements(boolean value)
true.
PCL doesn't support some kind of transformations that are used by Aspose Words. E.g. rotated, skewed images and texture brushes. To properly render such elements rasterization process is used, i.e. saving to image and clipping. This process can take additional time and memory. If flag is set to false, some content in output may be different as compared with the source document.value - A value determining whether or not complex transformed elements should be rasterized before saving to PCL document.public void addPrinterFont(java.lang.String fontFullName,
java.lang.String fontPclName)
fontFullName - Full name of the font (e.g. "Times New Roman Bold Italic").fontPclName - Name of the font that is used in Pcl document.public java.lang.String getFallbackFontName()
String value.public void setFallbackFontName(java.lang.String value)
value - The corresponding String value.