public class PdfSaveOptions extends FixedPageSaveOptions implements java.lang.Cloneable
SaveFormat.PDF format.
To learn more, visit the Specify Save Options documentation article.
Examples:
Shows how to escape hyperlinks in the document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertHyperlink("Testlink", uri, false);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
doc.save(getArtifactsDir() + "PdfSaveOptions.EscapedUri.pdf", options);
Shows how to change image color with saving options property.
Document doc = new Document(getMyDir() + "Images.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Set the "ColorMode" property to "Grayscale" to render all images from the document in black and white.
// The size of the output document may be larger with this setting.
// Set the "ColorMode" property to "Normal" to render all images in color.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
{
pdfSaveOptions.setColorMode(colorMode);
}
doc.save(getArtifactsDir() + "PdfSaveOptions.ColorRendering.pdf", pdfSaveOptions);
Shows how to apply text compression when saving a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
for (int i = 0; i < 100; i++)
builder.writeln("Lorem ipsum dolor sit amet, consectetur adipiscing elit, " +
"sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "TextCompression" property to "PdfTextCompression.None" to not apply any
// compression to text when we save the document to PDF.
// Set the "TextCompression" property to "PdfTextCompression.Flate" to apply ZIP compression
// to text when we save the document to PDF. The larger the document, the bigger the impact that this will have.
options.setTextCompression(pdfTextCompression);
doc.save(getArtifactsDir() + "PdfSaveOptions.TextCompression.pdf", options);
Shows how to convert a whole document to PDF with three levels in the document outline.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert headings of levels 1 to 5.
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_1);
Assert.assertTrue(builder.getParagraphFormat().isHeading());
builder.writeln("Heading 1");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_2);
builder.writeln("Heading 1.1");
builder.writeln("Heading 1.2");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_3);
builder.writeln("Heading 1.2.1");
builder.writeln("Heading 1.2.2");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_4);
builder.writeln("Heading 1.2.2.1");
builder.writeln("Heading 1.2.2.2");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_5);
builder.writeln("Heading 1.2.2.2.1");
builder.writeln("Heading 1.2.2.2.2");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// The output PDF document will contain an outline, which is a table of contents that lists headings in the document body.
// Clicking on an entry in this outline will take us to the location of its respective heading.
// Set the "HeadingsOutlineLevels" property to "4" to exclude all headings whose levels are above 4 from the outline.
options.getOutlineOptions().setHeadingsOutlineLevels(4);
// If an outline entry has subsequent entries of a higher level inbetween itself and the next entry of the same or lower level,
// an arrow will appear to the left of the entry. This entry is the "owner" of several such "sub-entries".
// In our document, the outline entries from the 5th heading level are sub-entries of the second 4th level outline entry,
// the 4th and 5th heading level entries are sub-entries of the second 3rd level entry, and so on.
// In the outline, we can click on the arrow of the "owner" entry to collapse/expand all its sub-entries.
// Set the "ExpandedOutlineLevels" property to "2" to automatically expand all heading level 2 and lower outline entries
// and collapse all level and 3 and higher entries when we open the document.
options.getOutlineOptions().setExpandedOutlineLevels(2);
doc.save(getArtifactsDir() + "PdfSaveOptions.ExpandedOutlineLevels.pdf", options);
| Constructor and Description |
|---|
PdfSaveOptions()
Initializes a new instance of this class that can be used to save a document in the
SaveFormat.PDF format. |
| Modifier and Type | Method and Description |
|---|---|
PdfSaveOptions |
deepClone()
Creates a deep clone of this object.
|
boolean |
getAdditionalTextPositioning()
A flag specifying whether to write additional text positioning operators or not.
|
int |
getAttachmentsEmbeddingMode()
Gets a value determining how attachments are embedded to the PDF document.
|
boolean |
getCacheBackgroundGraphics()
Gets a value determining whether or not to cache graphics placed in document's background.
|
int |
getCompliance()
Specifies the PDF standards compliance level for output documents.
|
boolean |
getCreateNoteHyperlinks()
Specifies whether to convert footnote/endnote references in main text story into active hyperlinks.
|
int |
getCustomPropertiesExport()
Gets a value determining the way
Document.getCustomDocumentProperties() are exported to PDF file. |
PdfDigitalSignatureDetails |
getDigitalSignatureDetails()
Gets the details for signing the output PDF document.
|
boolean |
getDisplayDocTitle()
A flag specifying whether the window’s title bar should display the document title taken from the Title entry of the document information dictionary.
|
int |
getDmlEffectsRenderingMode()
Gets a value determining how DrawingML effects are rendered.
|
DownsampleOptions |
getDownsampleOptions()
Allows to specify downsample options.
|
boolean |
getEmbedFullFonts()
Controls how fonts are embedded into the resulting PDF documents.
|
PdfEncryptionDetails |
getEncryptionDetails()
Gets the details for encrypting the output PDF document.
|
boolean |
getExportDocumentStructure()
Gets a value determining whether or not to export document structure.
|
boolean |
getExportFloatingShapesAsInlineTag()
Gets a value determining whether floating shapes are exported as inline tags in the document structure.
|
boolean |
getExportLanguageToSpanTag()
Gets a value determining whether or not to create a "Span" tag in the document structure to export the text language.
|
boolean |
getExportParagraphGraphicsToArtifact()
Gets a value determining whether a paragraph graphic should be marked as an artifact.
|
int |
getFontEmbeddingMode()
Specifies the font embedding mode.
|
int |
getHeaderFooterBookmarksExportMode()
Determines how bookmarks in headers/footers are exported.
|
int |
getImageColorSpaceExportMode()
Specifies how the color space will be selected for the images in PDF document.
|
int |
getImageCompression()
Specifies compression type to be used for all images in the document.
|
boolean |
getInterpolateImages()
A flag indicating whether image interpolation shall be performed by a conforming reader.
|
int |
getJpegQuality()
Gets a value determining the quality of the JPEG images inside PDF document.
|
boolean |
getOpenHyperlinksInNewWindow()
Gets a value determining whether hyperlinks in the output Pdf document are forced to be opened in a new window (or tab) of a browser.
|
OutlineOptions |
getOutlineOptions()
Allows to specify outline options.
|
int |
getPageLayout()
Specifies the page layout to be used when the document is opened in a PDF reader.
|
int |
getPageMode()
Specifies how the PDF document should be displayed when opened in a PDF reader.
|
boolean |
getPreblendImages()
Gets a value determining whether or not to preblend transparent images with black background color.
|
boolean |
getPreserveFormFields()
Specifies whether to preserve Microsoft Word form fields as form fields in PDF or convert them to text.
|
boolean |
getRenderChoiceFormFieldBorder()
Specifies whether to render PDF choice form field border.
|
int |
getSaveFormat()
Specifies the format in which the document will be saved if this save options object is used.
|
int |
getTextCompression()
Specifies compression type to be used for all textual content in the document.
|
boolean |
getUseBookFoldPrintingSettings()
Gets a boolean value indicating whether the document should be saved using a booklet printing layout, if it is specified via
PageSetup.getMultiplePages() / PageSetup.setMultiplePages(int). |
boolean |
getUseCoreFonts()
Gets a value determining whether or not to substitute TrueType fonts Arial, Times New Roman, Courier New and Symbol with core PDF Type 1 fonts.
|
boolean |
getUseSdtTagAsFormFieldName()
Specifies whether to use SDT control Tag or Id property as a name of form field in PDF.
|
int |
getZoomBehavior()
Gets a value determining what type of zoom should be applied when a document is opened with a PDF viewer.
|
int |
getZoomFactor()
Gets a value determining zoom factor (in percentages) for a document.
|
protected java.lang.Object |
memberwiseClone() |
void |
setAdditionalTextPositioning(boolean value)
A flag specifying whether to write additional text positioning operators or not.
|
void |
setAttachmentsEmbeddingMode(int value)
Sets a value determining how attachments are embedded to the PDF document.
|
void |
setCacheBackgroundGraphics(boolean value)
Sets a value determining whether or not to cache graphics placed in document's background.
|
void |
setCompliance(int value)
Specifies the PDF standards compliance level for output documents.
|
void |
setCreateNoteHyperlinks(boolean value)
Specifies whether to convert footnote/endnote references in main text story into active hyperlinks.
|
void |
setCustomPropertiesExport(int value)
Sets a value determining the way
Document.getCustomDocumentProperties() are exported to PDF file. |
void |
setDigitalSignatureDetails(PdfDigitalSignatureDetails value)
Sets the details for signing the output PDF document.
|
void |
setDisplayDocTitle(boolean value)
A flag specifying whether the window’s title bar should display the document title taken from the Title entry of the document information dictionary.
|
void |
setDmlEffectsRenderingMode(int value)
Sets a value determining how DrawingML effects are rendered.
|
void |
setDownsampleOptions(DownsampleOptions value)
Allows to specify downsample options.
|
void |
setEmbedFullFonts(boolean value)
Controls how fonts are embedded into the resulting PDF documents.
|
void |
setEncryptionDetails(PdfEncryptionDetails value)
Sets the details for encrypting the output PDF document.
|
void |
setExportDocumentStructure(boolean value)
Sets a value determining whether or not to export document structure.
|
void |
setExportFloatingShapesAsInlineTag(boolean value)
Sets a value determining whether floating shapes are exported as inline tags in the document structure.
|
void |
setExportLanguageToSpanTag(boolean value)
Sets a value determining whether or not to create a "Span" tag in the document structure to export the text language.
|
void |
setExportParagraphGraphicsToArtifact(boolean value)
Sets a value determining whether a paragraph graphic should be marked as an artifact.
|
void |
setFontEmbeddingMode(int value)
Specifies the font embedding mode.
|
void |
setHeaderFooterBookmarksExportMode(int value)
Determines how bookmarks in headers/footers are exported.
|
void |
setImageColorSpaceExportMode(int value)
Specifies how the color space will be selected for the images in PDF document.
|
void |
setImageCompression(int value)
Specifies compression type to be used for all images in the document.
|
void |
setInterpolateImages(boolean value)
A flag indicating whether image interpolation shall be performed by a conforming reader.
|
void |
setJpegQuality(int value)
Sets a value determining the quality of the JPEG images inside PDF document.
|
void |
setOpenHyperlinksInNewWindow(boolean value)
Sets a value determining whether hyperlinks in the output Pdf document are forced to be opened in a new window (or tab) of a browser.
|
void |
setPageLayout(int value)
Specifies the page layout to be used when the document is opened in a PDF reader.
|
void |
setPageMode(int value)
Specifies how the PDF document should be displayed when opened in a PDF reader.
|
void |
setPreblendImages(boolean value)
Sets a value determining whether or not to preblend transparent images with black background color.
|
void |
setPreserveFormFields(boolean value)
Specifies whether to preserve Microsoft Word form fields as form fields in PDF or convert them to text.
|
void |
setRenderChoiceFormFieldBorder(boolean value)
Specifies whether to render PDF choice form field border.
|
void |
setSaveFormat(int value)
Specifies the format in which the document will be saved if this save options object is used.
|
void |
setTextCompression(int value)
Specifies compression type to be used for all textual content in the document.
|
void |
setUseBookFoldPrintingSettings(boolean value)
Sets a boolean value indicating whether the document should be saved using a booklet printing layout, if it is specified via
PageSetup.getMultiplePages() / PageSetup.setMultiplePages(int). |
void |
setUseCoreFonts(boolean value)
Sets a value determining whether or not to substitute TrueType fonts Arial, Times New Roman, Courier New and Symbol with core PDF Type 1 fonts.
|
void |
setUseSdtTagAsFormFieldName(boolean value)
Specifies whether to use SDT control Tag or Id property as a name of form field in PDF.
|
void |
setZoomBehavior(int value)
Sets a value determining what type of zoom should be applied when a document is opened with a PDF viewer.
|
void |
setZoomFactor(int value)
Sets a value determining zoom factor (in percentages) for a document.
|
assertValidIdPrefix, equals, getColorMode, getMetafileRenderingOptions, getNumeralFormat, getOptimizeOutput, getPageSavingCallback, getPageSet, isValidIdPrefix, setColorMode, setMetafileRenderingOptions, setNumeralFormat, setOptimizeOutput, setPageSavingCallback, setPageSetcreateSaveOptions, createSaveOptions, getAllowEmbeddingPostScriptFonts, getCustomTimeZoneInfo, getDefaultTemplate, getDml3DEffectsRenderingMode, getDmlRenderingMode, getExportGeneratorName, getImlRenderingMode, getMemoryOptimization, getPrettyFormat, getProgressCallback, getTempFolder, getUpdateAmbiguousTextFont, getUpdateCreatedTimeProperty, getUpdateFields, getUpdateLastPrintedProperty, getUpdateLastSavedTimeProperty, getUseAntiAliasing, getUseHighQualityRendering, setAllowEmbeddingPostScriptFonts, setCustomTimeZoneInfo, setDefaultTemplate, setDml3DEffectsRenderingMode, setDmlRenderingMode, setExportGeneratorName, setImlRenderingMode, setMemoryOptimization, setPrettyFormat, setProgressCallback, setTempFolder, setUpdateAmbiguousTextFont, setUpdateCreatedTimeProperty, setUpdateFields, setUpdateLastPrintedProperty, setUpdateLastSavedTimeProperty, setUseAntiAliasing, setUseHighQualityRenderingpublic PdfSaveOptions()
SaveFormat.PDF format.
Examples:
Shows how to enable or disable subsetting when embedding fonts while rendering a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Arvo");
builder.writeln("The quick brown fox jumps over the lazy dog.");
// Configure our font sources to ensure that we have access to both the fonts in this document.
FontSourceBase[] originalFontsSources = FontSettings.getDefaultInstance().getFontsSources();
FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), true);
FontSettings.getDefaultInstance().setFontsSources(new FontSourceBase[]{originalFontsSources[0], folderFontSource});
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Since our document contains a custom font, embedding in the output document may be desirable.
// Set the "EmbedFullFonts" property to "true" to embed every glyph of every embedded font in the output PDF.
// The document's size may become very large, but we will have full use of all fonts if we edit the PDF.
// Set the "EmbedFullFonts" property to "false" to apply subsetting to fonts, saving only the glyphs
// that the document is using. The file will be considerably smaller,
// but we may need access to any custom fonts if we edit the document.
options.setEmbedFullFonts(embedFullFonts);
doc.save(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf", options);
if (embedFullFonts)
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf").length() < 571000);
else
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf").length() < 25000);
// Restore the original font sources.
FontSettings.getDefaultInstance().setFontsSources(originalFontsSources);
public int getSaveFormat()
SaveFormat.PDF.
Examples:
Shows how to limit the headings' level that will appear in the outline of a saved PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert headings that can serve as TOC entries of levels 1, 2, and then 3.
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_1);
Assert.assertTrue(builder.getParagraphFormat().isHeading());
builder.writeln("Heading 1");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_2);
builder.writeln("Heading 1.1");
builder.writeln("Heading 1.2");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_3);
builder.writeln("Heading 1.2.1");
builder.writeln("Heading 1.2.2");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setSaveFormat(SaveFormat.PDF);
// The output PDF document will contain an outline, which is a table of contents that lists headings in the document body.
// Clicking on an entry in this outline will take us to the location of its respective heading.
// Set the "HeadingsOutlineLevels" property to "2" to exclude all headings whose levels are above 2 from the outline.
// The last two headings we have inserted above will not appear.
saveOptions.getOutlineOptions().setHeadingsOutlineLevels(2);
doc.save(getArtifactsDir() + "PdfSaveOptions.HeadingsOutlineLevels.pdf", saveOptions);
getSaveFormat in class SaveOptionsint value. The returned value is one of SaveFormat constants.public void setSaveFormat(int value)
SaveFormat.PDF.
Examples:
Shows how to limit the headings' level that will appear in the outline of a saved PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert headings that can serve as TOC entries of levels 1, 2, and then 3.
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_1);
Assert.assertTrue(builder.getParagraphFormat().isHeading());
builder.writeln("Heading 1");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_2);
builder.writeln("Heading 1.1");
builder.writeln("Heading 1.2");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_3);
builder.writeln("Heading 1.2.1");
builder.writeln("Heading 1.2.2");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setSaveFormat(SaveFormat.PDF);
// The output PDF document will contain an outline, which is a table of contents that lists headings in the document body.
// Clicking on an entry in this outline will take us to the location of its respective heading.
// Set the "HeadingsOutlineLevels" property to "2" to exclude all headings whose levels are above 2 from the outline.
// The last two headings we have inserted above will not appear.
saveOptions.getOutlineOptions().setHeadingsOutlineLevels(2);
doc.save(getArtifactsDir() + "PdfSaveOptions.HeadingsOutlineLevels.pdf", saveOptions);
setSaveFormat in class SaveOptionsvalue - The corresponding int value. The value must be one of SaveFormat constants.public OutlineOptions getOutlineOptions()
Remarks:
Outlines can be created from headings and bookmarks.
For headings outline level is determined by the heading level.
It is possible to set the max heading level to be included into outlines or disable heading outlines at all.
For bookmarks outline level may be set in options as a default value for all bookmarks or as individual values for particular bookmarks.
Also, outlines can be exported to XPS format by using the same getOutlineOptions() class.
Examples:
Shows how to limit the headings' level that will appear in the outline of a saved PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert headings that can serve as TOC entries of levels 1, 2, and then 3.
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_1);
Assert.assertTrue(builder.getParagraphFormat().isHeading());
builder.writeln("Heading 1");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_2);
builder.writeln("Heading 1.1");
builder.writeln("Heading 1.2");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_3);
builder.writeln("Heading 1.2.1");
builder.writeln("Heading 1.2.2");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setSaveFormat(SaveFormat.PDF);
// The output PDF document will contain an outline, which is a table of contents that lists headings in the document body.
// Clicking on an entry in this outline will take us to the location of its respective heading.
// Set the "HeadingsOutlineLevels" property to "2" to exclude all headings whose levels are above 2 from the outline.
// The last two headings we have inserted above will not appear.
saveOptions.getOutlineOptions().setHeadingsOutlineLevels(2);
doc.save(getArtifactsDir() + "PdfSaveOptions.HeadingsOutlineLevels.pdf", saveOptions);
Shows how to work with outline levels that do not contain any corresponding headings when saving a PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert headings that can serve as TOC entries of levels 1 and 5.
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_1);
Assert.assertTrue(builder.getParagraphFormat().isHeading());
builder.writeln("Heading 1");
builder.getParagraphFormat().setStyleIdentifier(StyleIdentifier.HEADING_5);
builder.writeln("Heading 1.1.1.1.1");
builder.writeln("Heading 1.1.1.1.2");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// The output PDF document will contain an outline, which is a table of contents that lists headings in the document body.
// Clicking on an entry in this outline will take us to the location of its respective heading.
// Set the "HeadingsOutlineLevels" property to "5" to include all headings of levels 5 and below in the outline.
saveOptions.getOutlineOptions().setHeadingsOutlineLevels(5);
// This document contains headings of levels 1 and 5, and no headings with levels of 2, 3, and 4.
// The output PDF document will treat outline levels 2, 3, and 4 as "missing".
// Set the "CreateMissingOutlineLevels" property to "true" to include all missing levels in the outline,
// leaving blank outline entries since there are no usable headings.
// Set the "CreateMissingOutlineLevels" property to "false" to ignore missing outline levels,
// and treat the outline level 5 headings as level 2.
saveOptions.getOutlineOptions().setCreateMissingOutlineLevels(createMissingOutlineLevels);
doc.save(getArtifactsDir() + "PdfSaveOptions.CreateMissingOutlineLevels.pdf", saveOptions);
OutlineOptions value.public int getTextCompression()
Remarks:
Default is PdfTextCompression.FLATE.
Significantly increases output size when saving a document without compression.
Examples:
Shows how to apply text compression when saving a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
for (int i = 0; i < 100; i++)
builder.writeln("Lorem ipsum dolor sit amet, consectetur adipiscing elit, " +
"sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "TextCompression" property to "PdfTextCompression.None" to not apply any
// compression to text when we save the document to PDF.
// Set the "TextCompression" property to "PdfTextCompression.Flate" to apply ZIP compression
// to text when we save the document to PDF. The larger the document, the bigger the impact that this will have.
options.setTextCompression(pdfTextCompression);
doc.save(getArtifactsDir() + "PdfSaveOptions.TextCompression.pdf", options);
int value. The returned value is one of PdfTextCompression constants.public void setTextCompression(int value)
Remarks:
Default is PdfTextCompression.FLATE.
Significantly increases output size when saving a document without compression.
Examples:
Shows how to apply text compression when saving a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
for (int i = 0; i < 100; i++)
builder.writeln("Lorem ipsum dolor sit amet, consectetur adipiscing elit, " +
"sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "TextCompression" property to "PdfTextCompression.None" to not apply any
// compression to text when we save the document to PDF.
// Set the "TextCompression" property to "PdfTextCompression.Flate" to apply ZIP compression
// to text when we save the document to PDF. The larger the document, the bigger the impact that this will have.
options.setTextCompression(pdfTextCompression);
doc.save(getArtifactsDir() + "PdfSaveOptions.TextCompression.pdf", options);
value - The corresponding int value. The value must be one of PdfTextCompression constants.public int getJpegQuality()
Remarks:
The default value is 100.
This property is used in conjunction with the getImageCompression() / setImageCompression(int) option.
Has effect only when a document contains JPEG images.
Use this property to get or set the quality of the images inside a document when saving in PDF format. The value may vary from 0 to 100 where 0 means worst quality but maximum compression and 100 means best quality but minimum compression. If quality is 100 and source image is JPEG, it means no compression - original bytes will be saved.
Examples:
Shows how to specify a compression type for all images in a document that we are converting to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Jpeg image:");
builder.insertImage(getImageDir() + "Logo.jpg");
builder.insertParagraph();
builder.writeln("Png image:");
builder.insertImage(getImageDir() + "Transparent background logo.png");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Set the "ImageCompression" property to "PdfImageCompression.Auto" to use the
// "ImageCompression" property to control the quality of the Jpeg images that end up in the output PDF.
// Set the "ImageCompression" property to "PdfImageCompression.Jpeg" to use the
// "ImageCompression" property to control the quality of all images that end up in the output PDF.
pdfSaveOptions.setImageCompression(pdfImageCompression);
// Set the "JpegQuality" property to "10" to strengthen compression at the cost of image quality.
pdfSaveOptions.setJpegQuality(10);
doc.save(getArtifactsDir() + "PdfSaveOptions.ImageCompression.pdf", pdfSaveOptions);
getJpegQuality in class FixedPageSaveOptionspublic void setJpegQuality(int value)
Remarks:
The default value is 100.
This property is used in conjunction with the getImageCompression() / setImageCompression(int) option.
Has effect only when a document contains JPEG images.
Use this property to get or set the quality of the images inside a document when saving in PDF format. The value may vary from 0 to 100 where 0 means worst quality but maximum compression and 100 means best quality but minimum compression. If quality is 100 and source image is JPEG, it means no compression - original bytes will be saved.
Examples:
Shows how to specify a compression type for all images in a document that we are converting to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Jpeg image:");
builder.insertImage(getImageDir() + "Logo.jpg");
builder.insertParagraph();
builder.writeln("Png image:");
builder.insertImage(getImageDir() + "Transparent background logo.png");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Set the "ImageCompression" property to "PdfImageCompression.Auto" to use the
// "ImageCompression" property to control the quality of the Jpeg images that end up in the output PDF.
// Set the "ImageCompression" property to "PdfImageCompression.Jpeg" to use the
// "ImageCompression" property to control the quality of all images that end up in the output PDF.
pdfSaveOptions.setImageCompression(pdfImageCompression);
// Set the "JpegQuality" property to "10" to strengthen compression at the cost of image quality.
pdfSaveOptions.setJpegQuality(10);
doc.save(getArtifactsDir() + "PdfSaveOptions.ImageCompression.pdf", pdfSaveOptions);
setJpegQuality in class FixedPageSaveOptionsvalue - A value determining the quality of the JPEG images inside PDF document.public boolean getPreserveFormFields()
false.
Remarks:
Microsoft Word form fields include text input, drop down and check box controls.
When set to false, these fields will be exported as text to PDF. When set to true, these fields will be exported as PDF form fields.
When exporting form fields to PDF as form fields, some formatting loss might occur because PDF form fields do not support all features of Microsoft Word form fields.
Also, the output size depends on the content size because editable forms in Microsoft Word are inline objects.
Editable forms are prohibited by PDF/A compliance. false value will be used automatically when saving to PDF/A.
Form fields are not supported when saving to PDF/UA. false value will be used automatically.
Examples:
Shows how to save a document to the PDF format using the Save method and the PdfSaveOptions class.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.write("Please select a fruit: ");
// Insert a combo box which will allow a user to choose an option from a collection of strings.
builder.insertComboBox("MyComboBox", new String[]{"Apple", "Banana", "Cherry"}, 0);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions pdfOptions = new PdfSaveOptions();
// Set the "PreserveFormFields" property to "true" to save form fields as interactive objects in the output PDF.
// Set the "PreserveFormFields" property to "false" to freeze all form fields in the document at
// their current values and display them as plain text in the output PDF.
pdfOptions.setPreserveFormFields(preserveFormFields);
doc.save(getArtifactsDir() + "PdfSaveOptions.PreserveFormFields.pdf", pdfOptions);
boolean value.public void setPreserveFormFields(boolean value)
false.
Remarks:
Microsoft Word form fields include text input, drop down and check box controls.
When set to false, these fields will be exported as text to PDF. When set to true, these fields will be exported as PDF form fields.
When exporting form fields to PDF as form fields, some formatting loss might occur because PDF form fields do not support all features of Microsoft Word form fields.
Also, the output size depends on the content size because editable forms in Microsoft Word are inline objects.
Editable forms are prohibited by PDF/A compliance. false value will be used automatically when saving to PDF/A.
Form fields are not supported when saving to PDF/UA. false value will be used automatically.
Examples:
Shows how to save a document to the PDF format using the Save method and the PdfSaveOptions class.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.write("Please select a fruit: ");
// Insert a combo box which will allow a user to choose an option from a collection of strings.
builder.insertComboBox("MyComboBox", new String[]{"Apple", "Banana", "Cherry"}, 0);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions pdfOptions = new PdfSaveOptions();
// Set the "PreserveFormFields" property to "true" to save form fields as interactive objects in the output PDF.
// Set the "PreserveFormFields" property to "false" to freeze all form fields in the document at
// their current values and display them as plain text in the output PDF.
pdfOptions.setPreserveFormFields(preserveFormFields);
doc.save(getArtifactsDir() + "PdfSaveOptions.PreserveFormFields.pdf", pdfOptions);
value - The corresponding boolean value.public boolean getUseSdtTagAsFormFieldName()
Remarks:
The default value is false.
When set to false, SDT control Id property is used as a name of form field in PDF.
When set to true, SDT control Tag property is used as a name of form field in PDF.
If set to true and Tag is empty, Id property will be used as a form field name.
If set to true and Tag values are not unique, duplicate Tag values will be altered to build unique PDF form field names.
Examples:
Shows how to use SDT control Tag or Id property as a name of form field in PDF.
Document doc = new Document(getMyDir() + "Form fields.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setPreserveFormFields(true);
// When set to 'false', SDT control Id property is used as a name of form field in PDF.
// When set to 'true', SDT control Tag property is used as a name of form field in PDF.
saveOptions.setUseSdtTagAsFormFieldName(true);
doc.save(getArtifactsDir() + "PdfSaveOptions.SdtTagAsFormFieldName.pdf", saveOptions);
boolean value.public void setUseSdtTagAsFormFieldName(boolean value)
Remarks:
The default value is false.
When set to false, SDT control Id property is used as a name of form field in PDF.
When set to true, SDT control Tag property is used as a name of form field in PDF.
If set to true and Tag is empty, Id property will be used as a form field name.
If set to true and Tag values are not unique, duplicate Tag values will be altered to build unique PDF form field names.
Examples:
Shows how to use SDT control Tag or Id property as a name of form field in PDF.
Document doc = new Document(getMyDir() + "Form fields.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setPreserveFormFields(true);
// When set to 'false', SDT control Id property is used as a name of form field in PDF.
// When set to 'true', SDT control Tag property is used as a name of form field in PDF.
saveOptions.setUseSdtTagAsFormFieldName(true);
doc.save(getArtifactsDir() + "PdfSaveOptions.SdtTagAsFormFieldName.pdf", saveOptions);
value - The corresponding boolean value.public boolean getRenderChoiceFormFieldBorder()
Remarks:
PDF choice form fields are used for export of SDT Combo Box Content Control, SDT Drop-Down List Content Control and legacy Drop-Down Form Field when getPreserveFormFields() / setPreserveFormFields(boolean) option is enabled.
The default value is true.
Examples:
Shows how to render PDF choice form field border.
Document doc = new Document(getMyDir() + "Legacy drop-down.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setPreserveFormFields(true);
saveOptions.setRenderChoiceFormFieldBorder(true);
doc.save(getArtifactsDir() + "PdfSaveOptions.RenderChoiceFormFieldBorder.pdf", saveOptions);
boolean value.public void setRenderChoiceFormFieldBorder(boolean value)
Remarks:
PDF choice form fields are used for export of SDT Combo Box Content Control, SDT Drop-Down List Content Control and legacy Drop-Down Form Field when getPreserveFormFields() / setPreserveFormFields(boolean) option is enabled.
The default value is true.
Examples:
Shows how to render PDF choice form field border.
Document doc = new Document(getMyDir() + "Legacy drop-down.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setPreserveFormFields(true);
saveOptions.setRenderChoiceFormFieldBorder(true);
doc.save(getArtifactsDir() + "PdfSaveOptions.RenderChoiceFormFieldBorder.pdf", saveOptions);
value - The corresponding boolean value.public boolean getCreateNoteHyperlinks()
false.
Examples:
Shows how to make footnotes and endnotes function as hyperlinks.
Document doc = new Document(getMyDir() + "Footnotes and endnotes.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "CreateNoteHyperlinks" property to "true" to turn all footnote/endnote symbols
// in the text act as links that, upon clicking, take us to their respective footnotes/endnotes.
// Set the "CreateNoteHyperlinks" property to "false" not to have footnote/endnote symbols link to anything.
options.setCreateNoteHyperlinks(createNoteHyperlinks);
doc.save(getArtifactsDir() + "PdfSaveOptions.NoteHyperlinks.pdf", options);
boolean value.public void setCreateNoteHyperlinks(boolean value)
false.
Examples:
Shows how to make footnotes and endnotes function as hyperlinks.
Document doc = new Document(getMyDir() + "Footnotes and endnotes.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "CreateNoteHyperlinks" property to "true" to turn all footnote/endnote symbols
// in the text act as links that, upon clicking, take us to their respective footnotes/endnotes.
// Set the "CreateNoteHyperlinks" property to "false" not to have footnote/endnote symbols link to anything.
options.setCreateNoteHyperlinks(createNoteHyperlinks);
doc.save(getArtifactsDir() + "PdfSaveOptions.NoteHyperlinks.pdf", options);
value - The corresponding boolean value.public PdfEncryptionDetails getEncryptionDetails()
Remarks:
The default value is null and the output document will not be encrypted. When this property is set to a valid PdfEncryptionDetails object, then the output PDF document will be encrypted.
AES-128 encryption algorithm is used when saving to PDF 1.7 based compliance (including PDF/UA-1). AES-256 encryption algorithm is used when saving to PDF 2.0 based compliance.
Encryption is prohibited by PDF/A compliance. This option will be ignored when saving to PDF/A.
PdfPermissions.CONTENT_COPY_FOR_ACCESSIBILITY permission is required by PDF/UA compliance if the output document is encrypted. This permission will automatically used when saving to PDF/UA.
PdfPermissions.CONTENT_COPY_FOR_ACCESSIBILITY permission is deprecated in PDF 2.0 format. This permission will be ignored when saving to PDF 2.0.
Examples:
Shows how to set permissions on a saved PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
// Extend permissions to allow the editing of annotations.
PdfEncryptionDetails encryptionDetails =
new PdfEncryptionDetails("password", "", PdfPermissions.MODIFY_ANNOTATIONS | PdfPermissions.DOCUMENT_ASSEMBLY);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Enable encryption via the "EncryptionDetails" property.
saveOptions.setEncryptionDetails(encryptionDetails);
// When we open this document, we will need to provide the password before accessing its contents.
doc.save(getArtifactsDir() + "PdfSaveOptions.EncryptionPermissions.pdf", saveOptions);
public void setEncryptionDetails(PdfEncryptionDetails value)
Remarks:
The default value is null and the output document will not be encrypted. When this property is set to a valid PdfEncryptionDetails object, then the output PDF document will be encrypted.
AES-128 encryption algorithm is used when saving to PDF 1.7 based compliance (including PDF/UA-1). AES-256 encryption algorithm is used when saving to PDF 2.0 based compliance.
Encryption is prohibited by PDF/A compliance. This option will be ignored when saving to PDF/A.
PdfPermissions.CONTENT_COPY_FOR_ACCESSIBILITY permission is required by PDF/UA compliance if the output document is encrypted. This permission will automatically used when saving to PDF/UA.
PdfPermissions.CONTENT_COPY_FOR_ACCESSIBILITY permission is deprecated in PDF 2.0 format. This permission will be ignored when saving to PDF 2.0.
Examples:
Shows how to set permissions on a saved PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
// Extend permissions to allow the editing of annotations.
PdfEncryptionDetails encryptionDetails =
new PdfEncryptionDetails("password", "", PdfPermissions.MODIFY_ANNOTATIONS | PdfPermissions.DOCUMENT_ASSEMBLY);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Enable encryption via the "EncryptionDetails" property.
saveOptions.setEncryptionDetails(encryptionDetails);
// When we open this document, we will need to provide the password before accessing its contents.
doc.save(getArtifactsDir() + "PdfSaveOptions.EncryptionPermissions.pdf", saveOptions);
value - The details for encrypting the output PDF document.public PdfDigitalSignatureDetails getDigitalSignatureDetails()
Remarks:
The default value is null and the output document will not be signed. When this property is set to a valid PdfDigitalSignatureDetails object, then the output PDF document will be digitally signed.
Examples:
Shows how to sign a generated PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Contents of signed PDF.");
CertificateHolder certificateHolder = CertificateHolder.create(getMyDir() + "morzal.pfx", "aw");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Configure the "DigitalSignatureDetails" object of the "SaveOptions" object to
// digitally sign the document as we render it with the "Save" method.
Calendar calendar = Calendar.getInstance();
calendar.set(2015, Calendar.JULY, 20);
Date signingTime = calendar.getTime();
options.setDigitalSignatureDetails(new PdfDigitalSignatureDetails(certificateHolder, "Test Signing", "My Office", signingTime));
options.getDigitalSignatureDetails().setHashAlgorithm(PdfDigitalSignatureHashAlgorithm.RIPE_MD_160);
Assert.assertEquals(options.getDigitalSignatureDetails().getReason(), "Test Signing");
Assert.assertEquals(options.getDigitalSignatureDetails().getLocation(), "My Office");
Assert.assertEquals(DocumentHelper.getLocalDate(options.getDigitalSignatureDetails().getSignatureDate()), DocumentHelper.getLocalDate(signingTime));
doc.save(getArtifactsDir() + "PdfSaveOptions.PdfDigitalSignature.pdf", options);
public void setDigitalSignatureDetails(PdfDigitalSignatureDetails value)
Remarks:
The default value is null and the output document will not be signed. When this property is set to a valid PdfDigitalSignatureDetails object, then the output PDF document will be digitally signed.
Examples:
Shows how to sign a generated PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Contents of signed PDF.");
CertificateHolder certificateHolder = CertificateHolder.create(getMyDir() + "morzal.pfx", "aw");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Configure the "DigitalSignatureDetails" object of the "SaveOptions" object to
// digitally sign the document as we render it with the "Save" method.
Calendar calendar = Calendar.getInstance();
calendar.set(2015, Calendar.JULY, 20);
Date signingTime = calendar.getTime();
options.setDigitalSignatureDetails(new PdfDigitalSignatureDetails(certificateHolder, "Test Signing", "My Office", signingTime));
options.getDigitalSignatureDetails().setHashAlgorithm(PdfDigitalSignatureHashAlgorithm.RIPE_MD_160);
Assert.assertEquals(options.getDigitalSignatureDetails().getReason(), "Test Signing");
Assert.assertEquals(options.getDigitalSignatureDetails().getLocation(), "My Office");
Assert.assertEquals(DocumentHelper.getLocalDate(options.getDigitalSignatureDetails().getSignatureDate()), DocumentHelper.getLocalDate(signingTime));
doc.save(getArtifactsDir() + "PdfSaveOptions.PdfDigitalSignature.pdf", options);
value - The details for signing the output PDF document.public PdfSaveOptions deepClone()
Examples:
Shows how to update all the fields in a document immediately before saving it to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert text with PAGE and NUMPAGES fields. These fields do not display the correct value in real time.
// We will need to manually update them using updating methods such as "Field.Update()", and "Document.UpdateFields()"
// each time we need them to display accurate values.
builder.write("Page ");
builder.insertField("PAGE", "");
builder.write(" of ");
builder.insertField("NUMPAGES", "");
builder.insertBreak(BreakType.PAGE_BREAK);
builder.writeln("Hello World!");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "UpdateFields" property to "false" to not update all the fields in a document right before a save operation.
// This is the preferable option if we know that all our fields will be up to date before saving.
// Set the "UpdateFields" property to "true" to iterate through all the document
// fields and update them before we save it as a PDF. This will make sure that all the fields will display
// the most accurate values in the PDF.
options.setUpdateFields(updateFields);
// We can clone PdfSaveOptions objects.
Assert.assertNotSame(options, options.deepClone());
doc.save(getArtifactsDir() + "PdfSaveOptions.UpdateFields.pdf", options);
public boolean getEmbedFullFonts()
Remarks:
The default value is false, which means the fonts are subsetted before embedding. Subsetting is useful if you want to keep the output file size smaller. Subsetting removes all unused glyphs from a font.
When this value is set to true, a complete font file is embedded into PDF without subsetting. This will result in larger output files, but can be a useful option when you want to edit the resulting PDF later (e.g. add more text).
Some fonts are large (several megabytes) and embedding them without subsetting will result in large output documents.
Examples:
Shows how to enable or disable subsetting when embedding fonts while rendering a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Arvo");
builder.writeln("The quick brown fox jumps over the lazy dog.");
// Configure our font sources to ensure that we have access to both the fonts in this document.
FontSourceBase[] originalFontsSources = FontSettings.getDefaultInstance().getFontsSources();
FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), true);
FontSettings.getDefaultInstance().setFontsSources(new FontSourceBase[]{originalFontsSources[0], folderFontSource});
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Since our document contains a custom font, embedding in the output document may be desirable.
// Set the "EmbedFullFonts" property to "true" to embed every glyph of every embedded font in the output PDF.
// The document's size may become very large, but we will have full use of all fonts if we edit the PDF.
// Set the "EmbedFullFonts" property to "false" to apply subsetting to fonts, saving only the glyphs
// that the document is using. The file will be considerably smaller,
// but we may need access to any custom fonts if we edit the document.
options.setEmbedFullFonts(embedFullFonts);
doc.save(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf", options);
if (embedFullFonts)
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf").length() < 571000);
else
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf").length() < 25000);
// Restore the original font sources.
FontSettings.getDefaultInstance().setFontsSources(originalFontsSources);
boolean value.public void setEmbedFullFonts(boolean value)
Remarks:
The default value is false, which means the fonts are subsetted before embedding. Subsetting is useful if you want to keep the output file size smaller. Subsetting removes all unused glyphs from a font.
When this value is set to true, a complete font file is embedded into PDF without subsetting. This will result in larger output files, but can be a useful option when you want to edit the resulting PDF later (e.g. add more text).
Some fonts are large (several megabytes) and embedding them without subsetting will result in large output documents.
Examples:
Shows how to enable or disable subsetting when embedding fonts while rendering a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Arvo");
builder.writeln("The quick brown fox jumps over the lazy dog.");
// Configure our font sources to ensure that we have access to both the fonts in this document.
FontSourceBase[] originalFontsSources = FontSettings.getDefaultInstance().getFontsSources();
FolderFontSource folderFontSource = new FolderFontSource(getFontsDir(), true);
FontSettings.getDefaultInstance().setFontsSources(new FontSourceBase[]{originalFontsSources[0], folderFontSource});
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Since our document contains a custom font, embedding in the output document may be desirable.
// Set the "EmbedFullFonts" property to "true" to embed every glyph of every embedded font in the output PDF.
// The document's size may become very large, but we will have full use of all fonts if we edit the PDF.
// Set the "EmbedFullFonts" property to "false" to apply subsetting to fonts, saving only the glyphs
// that the document is using. The file will be considerably smaller,
// but we may need access to any custom fonts if we edit the document.
options.setEmbedFullFonts(embedFullFonts);
doc.save(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf", options);
if (embedFullFonts)
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf").length() < 571000);
else
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedFullFonts.pdf").length() < 25000);
// Restore the original font sources.
FontSettings.getDefaultInstance().setFontsSources(originalFontsSources);
value - The corresponding boolean value.public int getFontEmbeddingMode()
Remarks:
The default value is PdfFontEmbeddingMode.EMBED_ALL.
This setting works only for the text in ANSI (Windows-1252) encoding. If the document contains non-ANSI text then corresponding fonts will be embedded regardless of this setting.
PDF/A and PDF/UA compliance requires all fonts to be embedded. PdfFontEmbeddingMode.EMBED_ALL value will be used automatically when saving to PDF/A and PDF/UA.
Examples:
Shows how to set Aspose.Words to skip embedding Arial and Times New Roman fonts into a PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// "Arial" is a standard font, and "Courier New" is a nonstandard font.
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Courier New");
builder.writeln("The quick brown fox jumps over the lazy dog.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "EmbedFullFonts" property to "true" to embed every glyph of every embedded font in the output PDF.
options.setEmbedFullFonts(true);
// Set the "FontEmbeddingMode" property to "EmbedAll" to embed all fonts in the output PDF.
// Set the "FontEmbeddingMode" property to "EmbedNonstandard" to only allow nonstandard fonts' embedding in the output PDF.
// Set the "FontEmbeddingMode" property to "EmbedNone" to not embed any fonts in the output PDF.
options.setFontEmbeddingMode(pdfFontEmbeddingMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.EmbedWindowsFonts.pdf", options);
switch (pdfFontEmbeddingMode) {
case PdfFontEmbeddingMode.EMBED_ALL:
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedWindowsFonts.pdf").length() < 1031200);
break;
case PdfFontEmbeddingMode.EMBED_NONSTANDARD:
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedWindowsFonts.pdf").length() < 491800);
break;
case PdfFontEmbeddingMode.EMBED_NONE:
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedWindowsFonts.pdf").length() <= 4258);
break;
}
int value. The returned value is one of PdfFontEmbeddingMode constants.public void setFontEmbeddingMode(int value)
Remarks:
The default value is PdfFontEmbeddingMode.EMBED_ALL.
This setting works only for the text in ANSI (Windows-1252) encoding. If the document contains non-ANSI text then corresponding fonts will be embedded regardless of this setting.
PDF/A and PDF/UA compliance requires all fonts to be embedded. PdfFontEmbeddingMode.EMBED_ALL value will be used automatically when saving to PDF/A and PDF/UA.
Examples:
Shows how to set Aspose.Words to skip embedding Arial and Times New Roman fonts into a PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// "Arial" is a standard font, and "Courier New" is a nonstandard font.
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Courier New");
builder.writeln("The quick brown fox jumps over the lazy dog.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "EmbedFullFonts" property to "true" to embed every glyph of every embedded font in the output PDF.
options.setEmbedFullFonts(true);
// Set the "FontEmbeddingMode" property to "EmbedAll" to embed all fonts in the output PDF.
// Set the "FontEmbeddingMode" property to "EmbedNonstandard" to only allow nonstandard fonts' embedding in the output PDF.
// Set the "FontEmbeddingMode" property to "EmbedNone" to not embed any fonts in the output PDF.
options.setFontEmbeddingMode(pdfFontEmbeddingMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.EmbedWindowsFonts.pdf", options);
switch (pdfFontEmbeddingMode) {
case PdfFontEmbeddingMode.EMBED_ALL:
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedWindowsFonts.pdf").length() < 1031200);
break;
case PdfFontEmbeddingMode.EMBED_NONSTANDARD:
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedWindowsFonts.pdf").length() < 491800);
break;
case PdfFontEmbeddingMode.EMBED_NONE:
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedWindowsFonts.pdf").length() <= 4258);
break;
}
value - The corresponding int value. The value must be one of PdfFontEmbeddingMode constants.public boolean getUseCoreFonts()
Remarks:
The default value is false. When this value is set to true Arial, Times New Roman, Courier New and Symbol fonts are replaced in PDF document with corresponding core Type 1 font.
Core PDF fonts, or their font metrics and suitable substitution fonts, are required to be available to any PDF viewer application.
This setting works only for the text in ANSI (Windows-1252) encoding. Non-ANSI text will be written with embedded TrueType font regardless of this setting.
PDF/A and PDF/UA compliance requires all fonts to be embedded. false value will be used automatically when saving to PDF/A and PDF/UA.
Core fonts are not supported when saving to PDF 2.0 format. false value will be used automatically when saving to PDF 2.0.
This option has a higher priority then getFontEmbeddingMode() / setFontEmbeddingMode(int) option.
Examples:
Shows how enable/disable PDF Type 1 font substitution.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Courier New");
builder.writeln("The quick brown fox jumps over the lazy dog.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "UseCoreFonts" property to "true" to replace some fonts,
// including the two fonts in our document, with their PDF Type 1 equivalents.
// Set the "UseCoreFonts" property to "false" to not apply PDF Type 1 fonts.
options.setUseCoreFonts(useCoreFonts);
doc.save(getArtifactsDir() + "PdfSaveOptions.EmbedCoreFonts.pdf", options);
if (useCoreFonts)
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedCoreFonts.pdf").length() < 3000);
else
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedCoreFonts.pdf").length() < 33200);
public void setUseCoreFonts(boolean value)
Remarks:
The default value is false. When this value is set to true Arial, Times New Roman, Courier New and Symbol fonts are replaced in PDF document with corresponding core Type 1 font.
Core PDF fonts, or their font metrics and suitable substitution fonts, are required to be available to any PDF viewer application.
This setting works only for the text in ANSI (Windows-1252) encoding. Non-ANSI text will be written with embedded TrueType font regardless of this setting.
PDF/A and PDF/UA compliance requires all fonts to be embedded. false value will be used automatically when saving to PDF/A and PDF/UA.
Core fonts are not supported when saving to PDF 2.0 format. false value will be used automatically when saving to PDF 2.0.
This option has a higher priority then getFontEmbeddingMode() / setFontEmbeddingMode(int) option.
Examples:
Shows how enable/disable PDF Type 1 font substitution.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Courier New");
builder.writeln("The quick brown fox jumps over the lazy dog.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "UseCoreFonts" property to "true" to replace some fonts,
// including the two fonts in our document, with their PDF Type 1 equivalents.
// Set the "UseCoreFonts" property to "false" to not apply PDF Type 1 fonts.
options.setUseCoreFonts(useCoreFonts);
doc.save(getArtifactsDir() + "PdfSaveOptions.EmbedCoreFonts.pdf", options);
if (useCoreFonts)
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedCoreFonts.pdf").length() < 3000);
else
Assert.assertTrue(new File(getArtifactsDir() + "PdfSaveOptions.EmbedCoreFonts.pdf").length() < 33200);
value - A value determining whether or not to substitute TrueType fonts Arial, Times New Roman, Courier New and Symbol with core PDF Type 1 fonts.public int getCustomPropertiesExport()
Document.getCustomDocumentProperties() are exported to PDF file.
Remarks:
Default value is PdfCustomPropertiesExport.NONE.
PdfCustomPropertiesExport.METADATA value is not supported when saving to PDF/A. PdfCustomPropertiesExport.STANDARD will be used instead for PDF/A-1 and PDF/A-2 and PdfCustomPropertiesExport.NONE for PDF/A-4.
PdfCustomPropertiesExport.STANDARD value is not supported when saving to PDF 2.0. PdfCustomPropertiesExport.METADATA will be used instead.
Examples:
Shows how to export custom properties while converting a document to PDF.
Document doc = new Document();
doc.getCustomDocumentProperties().add("Company", "My value");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.None" to discard
// custom document properties as we save the document to .PDF.
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.Standard"
// to preserve custom properties within the output PDF document.
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.Metadata"
// to preserve custom properties in an XMP packet.
options.setCustomPropertiesExport(pdfCustomPropertiesExportMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.CustomPropertiesExport.pdf", options);
Document.getCustomDocumentProperties() are exported to PDF file. The returned value is one of PdfCustomPropertiesExport constants.public void setCustomPropertiesExport(int value)
Document.getCustomDocumentProperties() are exported to PDF file.
Remarks:
Default value is PdfCustomPropertiesExport.NONE.
PdfCustomPropertiesExport.METADATA value is not supported when saving to PDF/A. PdfCustomPropertiesExport.STANDARD will be used instead for PDF/A-1 and PDF/A-2 and PdfCustomPropertiesExport.NONE for PDF/A-4.
PdfCustomPropertiesExport.STANDARD value is not supported when saving to PDF 2.0. PdfCustomPropertiesExport.METADATA will be used instead.
Examples:
Shows how to export custom properties while converting a document to PDF.
Document doc = new Document();
doc.getCustomDocumentProperties().add("Company", "My value");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.None" to discard
// custom document properties as we save the document to .PDF.
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.Standard"
// to preserve custom properties within the output PDF document.
// Set the "CustomPropertiesExport" property to "PdfCustomPropertiesExport.Metadata"
// to preserve custom properties in an XMP packet.
options.setCustomPropertiesExport(pdfCustomPropertiesExportMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.CustomPropertiesExport.pdf", options);
value - A value determining the way Document.getCustomDocumentProperties() are exported to PDF file. The value must be one of PdfCustomPropertiesExport constants.public int getZoomBehavior()
Remarks:
The default value is PdfZoomBehavior.NONE, i.e. no fit is applied.
Examples:
Shows how to set the default zooming that a reader applies when opening a rendered PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Set the "ZoomBehavior" property to "PdfZoomBehavior.ZoomFactor" to get a PDF reader to
// apply a percentage-based zoom factor when we open the document with it.
// Set the "ZoomFactor" property to "25" to give the zoom factor a value of 25%.
PdfSaveOptions options = new PdfSaveOptions();
{
options.setZoomBehavior(PdfZoomBehavior.ZOOM_FACTOR);
options.setZoomFactor(25);
}
// When we open this document using a reader such as Adobe Acrobat, we will see the document scaled at 1/4 of its actual size.
doc.save(getArtifactsDir() + "PdfSaveOptions.ZoomBehaviour.pdf", options);
PdfZoomBehavior constants.public void setZoomBehavior(int value)
Remarks:
The default value is PdfZoomBehavior.NONE, i.e. no fit is applied.
Examples:
Shows how to set the default zooming that a reader applies when opening a rendered PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Set the "ZoomBehavior" property to "PdfZoomBehavior.ZoomFactor" to get a PDF reader to
// apply a percentage-based zoom factor when we open the document with it.
// Set the "ZoomFactor" property to "25" to give the zoom factor a value of 25%.
PdfSaveOptions options = new PdfSaveOptions();
{
options.setZoomBehavior(PdfZoomBehavior.ZOOM_FACTOR);
options.setZoomFactor(25);
}
// When we open this document using a reader such as Adobe Acrobat, we will see the document scaled at 1/4 of its actual size.
doc.save(getArtifactsDir() + "PdfSaveOptions.ZoomBehaviour.pdf", options);
value - A value determining what type of zoom should be applied when a document is opened with a PDF viewer. The value must be one of PdfZoomBehavior constants.public int getZoomFactor()
Remarks:
This value is used only if getZoomBehavior() / setZoomBehavior(int) is set to PdfZoomBehavior.ZOOM_FACTOR.
Examples:
Shows how to set the default zooming that a reader applies when opening a rendered PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Set the "ZoomBehavior" property to "PdfZoomBehavior.ZoomFactor" to get a PDF reader to
// apply a percentage-based zoom factor when we open the document with it.
// Set the "ZoomFactor" property to "25" to give the zoom factor a value of 25%.
PdfSaveOptions options = new PdfSaveOptions();
{
options.setZoomBehavior(PdfZoomBehavior.ZOOM_FACTOR);
options.setZoomFactor(25);
}
// When we open this document using a reader such as Adobe Acrobat, we will see the document scaled at 1/4 of its actual size.
doc.save(getArtifactsDir() + "PdfSaveOptions.ZoomBehaviour.pdf", options);
public void setZoomFactor(int value)
Remarks:
This value is used only if getZoomBehavior() / setZoomBehavior(int) is set to PdfZoomBehavior.ZOOM_FACTOR.
Examples:
Shows how to set the default zooming that a reader applies when opening a rendered PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Set the "ZoomBehavior" property to "PdfZoomBehavior.ZoomFactor" to get a PDF reader to
// apply a percentage-based zoom factor when we open the document with it.
// Set the "ZoomFactor" property to "25" to give the zoom factor a value of 25%.
PdfSaveOptions options = new PdfSaveOptions();
{
options.setZoomBehavior(PdfZoomBehavior.ZOOM_FACTOR);
options.setZoomFactor(25);
}
// When we open this document using a reader such as Adobe Acrobat, we will see the document scaled at 1/4 of its actual size.
doc.save(getArtifactsDir() + "PdfSaveOptions.ZoomBehaviour.pdf", options);
value - A value determining zoom factor (in percentages) for a document.public int getImageCompression()
Remarks:
Default is PdfImageCompression.AUTO.
Using PdfImageCompression.JPEG lets you control the quality of images in the output document through the getJpegQuality() / setJpegQuality(int) property.
Using PdfImageCompression.JPEG provides the fastest conversion speed when compared to the performance of other compression types, but in this case, there is lossy JPEG compression.
Using PdfImageCompression.AUTO lets to control the quality of Jpeg in the output document through the getJpegQuality() / setJpegQuality(int) property, but for other formats, raw pixel data is extracted and saved with Flate compression. This case is slower than Jpeg conversion but lossless.
Examples:
Shows how to specify a compression type for all images in a document that we are converting to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Jpeg image:");
builder.insertImage(getImageDir() + "Logo.jpg");
builder.insertParagraph();
builder.writeln("Png image:");
builder.insertImage(getImageDir() + "Transparent background logo.png");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Set the "ImageCompression" property to "PdfImageCompression.Auto" to use the
// "ImageCompression" property to control the quality of the Jpeg images that end up in the output PDF.
// Set the "ImageCompression" property to "PdfImageCompression.Jpeg" to use the
// "ImageCompression" property to control the quality of all images that end up in the output PDF.
pdfSaveOptions.setImageCompression(pdfImageCompression);
// Set the "JpegQuality" property to "10" to strengthen compression at the cost of image quality.
pdfSaveOptions.setJpegQuality(10);
doc.save(getArtifactsDir() + "PdfSaveOptions.ImageCompression.pdf", pdfSaveOptions);
int value. The returned value is one of PdfImageCompression constants.public void setImageCompression(int value)
Remarks:
Default is PdfImageCompression.AUTO.
Using PdfImageCompression.JPEG lets you control the quality of images in the output document through the getJpegQuality() / setJpegQuality(int) property.
Using PdfImageCompression.JPEG provides the fastest conversion speed when compared to the performance of other compression types, but in this case, there is lossy JPEG compression.
Using PdfImageCompression.AUTO lets to control the quality of Jpeg in the output document through the getJpegQuality() / setJpegQuality(int) property, but for other formats, raw pixel data is extracted and saved with Flate compression. This case is slower than Jpeg conversion but lossless.
Examples:
Shows how to specify a compression type for all images in a document that we are converting to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Jpeg image:");
builder.insertImage(getImageDir() + "Logo.jpg");
builder.insertParagraph();
builder.writeln("Png image:");
builder.insertImage(getImageDir() + "Transparent background logo.png");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Set the "ImageCompression" property to "PdfImageCompression.Auto" to use the
// "ImageCompression" property to control the quality of the Jpeg images that end up in the output PDF.
// Set the "ImageCompression" property to "PdfImageCompression.Jpeg" to use the
// "ImageCompression" property to control the quality of all images that end up in the output PDF.
pdfSaveOptions.setImageCompression(pdfImageCompression);
// Set the "JpegQuality" property to "10" to strengthen compression at the cost of image quality.
pdfSaveOptions.setJpegQuality(10);
doc.save(getArtifactsDir() + "PdfSaveOptions.ImageCompression.pdf", pdfSaveOptions);
value - The corresponding int value. The value must be one of PdfImageCompression constants.public boolean getOpenHyperlinksInNewWindow()
Remarks:
The default value is false. When this value is set to true hyperlinks are saved using JavaScript code. JavaScript code is app.launchURL("URL", true);, where URL is a hyperlink.
Note that if this option is set to true hyperlinks can't work in some PDF readers e.g. Chrome, Firefox.
JavaScript actions are prohibited by PDF/A-1 and PDF/A-2 compliance. false will be used automatically when saving to PDF/A-1 and PDF/A-2.
Examples:
Shows how to save hyperlinks in a document we convert to PDF so that they open new pages when we click on them.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertHyperlink("Testlink", "https://www.google.com/search?q=%20aspose", false);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "OpenHyperlinksInNewWindow" property to "true" to save all hyperlinks using Javascript code
// that forces readers to open these links in new windows/browser tabs.
// Set the "OpenHyperlinksInNewWindow" property to "false" to save all hyperlinks normally.
options.setOpenHyperlinksInNewWindow(openHyperlinksInNewWindow);
doc.save(getArtifactsDir() + "PdfSaveOptions.OpenHyperlinksInNewWindow.pdf", options);
public void setOpenHyperlinksInNewWindow(boolean value)
Remarks:
The default value is false. When this value is set to true hyperlinks are saved using JavaScript code. JavaScript code is app.launchURL("URL", true);, where URL is a hyperlink.
Note that if this option is set to true hyperlinks can't work in some PDF readers e.g. Chrome, Firefox.
JavaScript actions are prohibited by PDF/A-1 and PDF/A-2 compliance. false will be used automatically when saving to PDF/A-1 and PDF/A-2.
Examples:
Shows how to save hyperlinks in a document we convert to PDF so that they open new pages when we click on them.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertHyperlink("Testlink", "https://www.google.com/search?q=%20aspose", false);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "OpenHyperlinksInNewWindow" property to "true" to save all hyperlinks using Javascript code
// that forces readers to open these links in new windows/browser tabs.
// Set the "OpenHyperlinksInNewWindow" property to "false" to save all hyperlinks normally.
options.setOpenHyperlinksInNewWindow(openHyperlinksInNewWindow);
doc.save(getArtifactsDir() + "PdfSaveOptions.OpenHyperlinksInNewWindow.pdf", options);
value - A value determining whether hyperlinks in the output Pdf document are forced to be opened in a new window (or tab) of a browser.public boolean getExportDocumentStructure()
Remarks:
This value is ignored when saving to PDF/A-1a, PDF/A-2a and PDF/UA-1 because document structure is required for this compliance.
Note that exporting the document structure significantly increases the memory consumption, especially for the large documents.
Examples:
Shows how to preserve document structure elements, which can assist in programmatically interpreting our document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getParagraphFormat().setStyle(doc.getStyles().get("Heading 1"));
builder.writeln("Hello world!");
builder.getParagraphFormat().setStyle(doc.getStyles().get("Normal"));
builder.write(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "ExportDocumentStructure" property to "true" to make the document structure, such tags, available via the
// "Content" navigation pane of Adobe Acrobat at the cost of increased file size.
// Set the "ExportDocumentStructure" property to "false" to not export the document structure.
options.setExportDocumentStructure(exportDocumentStructure);
// Suppose we export document structure while saving this document. In that case,
// we can open it using Adobe Acrobat and find tags for elements such as the heading
// and the next paragraph via "View" -> "Show/Hide" -> "Navigation panes" -> "Tags".
doc.save(getArtifactsDir() + "PdfSaveOptions.ExportDocumentStructure.pdf", options);
public void setExportDocumentStructure(boolean value)
Remarks:
This value is ignored when saving to PDF/A-1a, PDF/A-2a and PDF/UA-1 because document structure is required for this compliance.
Note that exporting the document structure significantly increases the memory consumption, especially for the large documents.
Examples:
Shows how to preserve document structure elements, which can assist in programmatically interpreting our document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getParagraphFormat().setStyle(doc.getStyles().get("Heading 1"));
builder.writeln("Hello world!");
builder.getParagraphFormat().setStyle(doc.getStyles().get("Normal"));
builder.write(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "ExportDocumentStructure" property to "true" to make the document structure, such tags, available via the
// "Content" navigation pane of Adobe Acrobat at the cost of increased file size.
// Set the "ExportDocumentStructure" property to "false" to not export the document structure.
options.setExportDocumentStructure(exportDocumentStructure);
// Suppose we export document structure while saving this document. In that case,
// we can open it using Adobe Acrobat and find tags for elements such as the heading
// and the next paragraph via "View" -> "Show/Hide" -> "Navigation panes" -> "Tags".
doc.save(getArtifactsDir() + "PdfSaveOptions.ExportDocumentStructure.pdf", options);
value - A value determining whether or not to export document structure.public boolean getExportLanguageToSpanTag()
Remarks:
Default value is false and "Lang" attribute is attached to a marked-content sequence in a page content stream.
When the value is true "Span" tag is created for the text with non-default language and "Lang" attribute is attached to this tag.
This value is ignored when getExportDocumentStructure() / setExportDocumentStructure(boolean) is false.
Examples:
Shows how to create a "Span" tag in the document structure to export the text language.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
builder.writeln("Hola mundo!");
PdfSaveOptions saveOptions = new PdfSaveOptions();
{
// Note, when "ExportDocumentStructure" is false, "ExportLanguageToSpanTag" is ignored.
saveOptions.setExportDocumentStructure(true); saveOptions.setExportLanguageToSpanTag(true);
}
doc.save(getArtifactsDir() + "PdfSaveOptions.ExportLanguageToSpanTag.pdf", saveOptions);
public void setExportLanguageToSpanTag(boolean value)
Remarks:
Default value is false and "Lang" attribute is attached to a marked-content sequence in a page content stream.
When the value is true "Span" tag is created for the text with non-default language and "Lang" attribute is attached to this tag.
This value is ignored when getExportDocumentStructure() / setExportDocumentStructure(boolean) is false.
Examples:
Shows how to create a "Span" tag in the document structure to export the text language.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
builder.writeln("Hola mundo!");
PdfSaveOptions saveOptions = new PdfSaveOptions();
{
// Note, when "ExportDocumentStructure" is false, "ExportLanguageToSpanTag" is ignored.
saveOptions.setExportDocumentStructure(true); saveOptions.setExportLanguageToSpanTag(true);
}
doc.save(getArtifactsDir() + "PdfSaveOptions.ExportLanguageToSpanTag.pdf", saveOptions);
value - A value determining whether or not to create a "Span" tag in the document structure to export the text language.public boolean getExportParagraphGraphicsToArtifact()
Remarks:
Default value is false and paragraph graphics (underlines, text emphasis, etc.) will be marked as "Span" in the logical structure of the document.
When the value is true the paragraph graphics will be marked as "Artifact".
This value is ignored when getExportDocumentStructure() / setExportDocumentStructure(boolean) is false.
Examples:
Shows how to export paragraph graphics as artifact (underlines, text emphasis, etc.).
Document doc = new Document(getMyDir() + "PDF artifacts.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setExportDocumentStructure(true);
saveOptions.setExportParagraphGraphicsToArtifact(true);
saveOptions.setTextCompression(PdfTextCompression.NONE);
doc.save(getArtifactsDir() + "PdfSaveOptions.ExportParagraphGraphicsToArtifact.pdf", saveOptions);
public void setExportParagraphGraphicsToArtifact(boolean value)
Remarks:
Default value is false and paragraph graphics (underlines, text emphasis, etc.) will be marked as "Span" in the logical structure of the document.
When the value is true the paragraph graphics will be marked as "Artifact".
This value is ignored when getExportDocumentStructure() / setExportDocumentStructure(boolean) is false.
Examples:
Shows how to export paragraph graphics as artifact (underlines, text emphasis, etc.).
Document doc = new Document(getMyDir() + "PDF artifacts.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setExportDocumentStructure(true);
saveOptions.setExportParagraphGraphicsToArtifact(true);
saveOptions.setTextCompression(PdfTextCompression.NONE);
doc.save(getArtifactsDir() + "PdfSaveOptions.ExportParagraphGraphicsToArtifact.pdf", saveOptions);
value - A value determining whether a paragraph graphic should be marked as an artifact.public boolean getExportFloatingShapesAsInlineTag()
Remarks:
Default value is false and floating shapes will be exported as block-level tags, placed after the paragraph in which they are anchored.
When the value is true floating shapes will be exported as inline tags, placed within the paragraph where they are anchored.
This value is ignored when getExportDocumentStructure() / setExportDocumentStructure(boolean) is false.
Examples:
Shows how to export floating shapes as inline tags.
Document doc = new Document(getMyDir() + "Floating object.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setExportFloatingShapesAsInlineTag(true);
doc.save(getArtifactsDir() + "PdfSaveOptions.ExportFloatingShapesAsInlineTag.pdf", saveOptions);
public void setExportFloatingShapesAsInlineTag(boolean value)
Remarks:
Default value is false and floating shapes will be exported as block-level tags, placed after the paragraph in which they are anchored.
When the value is true floating shapes will be exported as inline tags, placed within the paragraph where they are anchored.
This value is ignored when getExportDocumentStructure() / setExportDocumentStructure(boolean) is false.
Examples:
Shows how to export floating shapes as inline tags.
Document doc = new Document(getMyDir() + "Floating object.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setExportFloatingShapesAsInlineTag(true);
doc.save(getArtifactsDir() + "PdfSaveOptions.ExportFloatingShapesAsInlineTag.pdf", saveOptions);
value - A value determining whether floating shapes are exported as inline tags in the document structure.public boolean getUseBookFoldPrintingSettings()
PageSetup.getMultiplePages() / PageSetup.setMultiplePages(int).
Remarks:
If this option is specified, FixedPageSaveOptions.getPageSet() / FixedPageSaveOptions.setPageSet(com.aspose.words.PageSet) is ignored when saving. This behavior matches MS Word. If book fold printing settings are not specified in page setup, this option will have no effect.
Examples:
Shows how to save a document to the PDF format in the form of a book fold.
Document doc = new Document(getMyDir() + "Paragraphs.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "UseBookFoldPrintingSettings" property to "true" to arrange the contents
// in the output PDF in a way that helps us use it to make a booklet.
// Set the "UseBookFoldPrintingSettings" property to "false" to render the PDF normally.
options.setUseBookFoldPrintingSettings(renderTextAsBookfold);
// If we are rendering the document as a booklet, we must set the "MultiplePages"
// properties of the page setup objects of all sections to "MultiplePagesType.BookFoldPrinting".
if (renderTextAsBookfold)
for (Section s : doc.getSections()) {
s.getPageSetup().setMultiplePages(MultiplePagesType.BOOK_FOLD_PRINTING);
}
// Once we print this document on both sides of the pages, we can fold all the pages down the middle at once,
// and the contents will line up in a way that creates a booklet.
doc.save(getArtifactsDir() + "PdfSaveOptions.SaveAsPdfBookFold.pdf", options);
PageSetup.getMultiplePages() / PageSetup.setMultiplePages(int).public void setUseBookFoldPrintingSettings(boolean value)
PageSetup.getMultiplePages() / PageSetup.setMultiplePages(int).
Remarks:
If this option is specified, FixedPageSaveOptions.getPageSet() / FixedPageSaveOptions.setPageSet(com.aspose.words.PageSet) is ignored when saving. This behavior matches MS Word. If book fold printing settings are not specified in page setup, this option will have no effect.
Examples:
Shows how to save a document to the PDF format in the form of a book fold.
Document doc = new Document(getMyDir() + "Paragraphs.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "UseBookFoldPrintingSettings" property to "true" to arrange the contents
// in the output PDF in a way that helps us use it to make a booklet.
// Set the "UseBookFoldPrintingSettings" property to "false" to render the PDF normally.
options.setUseBookFoldPrintingSettings(renderTextAsBookfold);
// If we are rendering the document as a booklet, we must set the "MultiplePages"
// properties of the page setup objects of all sections to "MultiplePagesType.BookFoldPrinting".
if (renderTextAsBookfold)
for (Section s : doc.getSections()) {
s.getPageSetup().setMultiplePages(MultiplePagesType.BOOK_FOLD_PRINTING);
}
// Once we print this document on both sides of the pages, we can fold all the pages down the middle at once,
// and the contents will line up in a way that creates a booklet.
doc.save(getArtifactsDir() + "PdfSaveOptions.SaveAsPdfBookFold.pdf", options);
value - A boolean value indicating whether the document should be saved using a booklet printing layout, if it is specified via PageSetup.getMultiplePages() / PageSetup.setMultiplePages(int).public DownsampleOptions getDownsampleOptions()
Examples:
Shows how to change the resolution of images in the PDF document.
Document doc = new Document(getMyDir() + "Images.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// By default, Aspose.Words downsample all images in a document that we save to PDF to 220 ppi.
Assert.assertTrue(options.getDownsampleOptions().getDownsampleImages());
Assert.assertEquals(220, options.getDownsampleOptions().getResolution());
Assert.assertEquals(0, options.getDownsampleOptions().getResolutionThreshold());
doc.save(getArtifactsDir() + "PdfSaveOptions.DownsampleOptions.Default.pdf", options);
// Set the "Resolution" property to "36" to downsample all images to 36 ppi.
options.getDownsampleOptions().setResolution(36);
// Set the "ResolutionThreshold" property to only apply the downsampling to
// images with a resolution that is above 128 ppi.
options.getDownsampleOptions().setResolutionThreshold(128);
// Only the first two images from the document will be downsampled at this stage.
doc.save(getArtifactsDir() + "PdfSaveOptions.DownsampleOptions.LowerResolution.pdf", options);
DownsampleOptions value.public void setDownsampleOptions(DownsampleOptions value)
Examples:
Shows how to change the resolution of images in the PDF document.
Document doc = new Document(getMyDir() + "Images.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// By default, Aspose.Words downsample all images in a document that we save to PDF to 220 ppi.
Assert.assertTrue(options.getDownsampleOptions().getDownsampleImages());
Assert.assertEquals(220, options.getDownsampleOptions().getResolution());
Assert.assertEquals(0, options.getDownsampleOptions().getResolutionThreshold());
doc.save(getArtifactsDir() + "PdfSaveOptions.DownsampleOptions.Default.pdf", options);
// Set the "Resolution" property to "36" to downsample all images to 36 ppi.
options.getDownsampleOptions().setResolution(36);
// Set the "ResolutionThreshold" property to only apply the downsampling to
// images with a resolution that is above 128 ppi.
options.getDownsampleOptions().setResolutionThreshold(128);
// Only the first two images from the document will be downsampled at this stage.
doc.save(getArtifactsDir() + "PdfSaveOptions.DownsampleOptions.LowerResolution.pdf", options);
value - The corresponding DownsampleOptions value.public int getPageLayout()
Remarks:
The default value is PdfPageLayout.SINGLE_PAGE.
Examples:
Shows how to display pages when opened in a PDF reader.
Document doc = new Document(getMyDir() + "Big document.docx");
// Display the pages two at a time, with odd-numbered pages on the left.
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setPageLayout(PdfPageLayout.TWO_PAGE_LEFT);
doc.save(getArtifactsDir() + "PdfSaveOptions.PageLayout.pdf", saveOptions);
int value. The returned value is one of PdfPageLayout constants.public void setPageLayout(int value)
Remarks:
The default value is PdfPageLayout.SINGLE_PAGE.
Examples:
Shows how to display pages when opened in a PDF reader.
Document doc = new Document(getMyDir() + "Big document.docx");
// Display the pages two at a time, with odd-numbered pages on the left.
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setPageLayout(PdfPageLayout.TWO_PAGE_LEFT);
doc.save(getArtifactsDir() + "PdfSaveOptions.PageLayout.pdf", saveOptions);
value - The corresponding int value. The value must be one of PdfPageLayout constants.public int getPageMode()
Remarks:
The default value is PdfPageMode.USE_OUTLINES.
Examples:
Shows how to set instructions for some PDF readers to follow when opening an output document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "PageMode" property to "PdfPageMode.FullScreen" to get the PDF reader to open the saved
// document in full-screen mode, which takes over the monitor's display and has no controls visible.
// Set the "PageMode" property to "PdfPageMode.UseThumbs" to get the PDF reader to display a separate panel
// with a thumbnail for each page in the document.
// Set the "PageMode" property to "PdfPageMode.UseOC" to get the PDF reader to display a separate panel
// that allows us to work with any layers present in the document.
// Set the "PageMode" property to "PdfPageMode.UseOutlines" to get the PDF reader
// also to display the outline, if possible.
// Set the "PageMode" property to "PdfPageMode.UseNone" to get the PDF reader to display just the document itself.
// Set the "PageMode" property to "PdfPageMode.UseAttachments" to make visible attachments panel.
options.setPageMode(pageMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.PageMode.pdf", options);
Shows to process bookmarks in headers/footers in a document that we are rendering to PDF.
Document doc = new Document(getMyDir() + "Bookmarks in headers and footers.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Set the "PageMode" property to "PdfPageMode.UseOutlines" to display the outline navigation pane in the output PDF.
saveOptions.setPageMode(PdfPageMode.USE_OUTLINES);
// Set the "DefaultBookmarksOutlineLevel" property to "1" to display all
// bookmarks at the first level of the outline in the output PDF.
saveOptions.getOutlineOptions().setDefaultBookmarksOutlineLevel(1);
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.None" to
// not export any bookmarks that are inside headers/footers.
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.First" to
// only export bookmarks in the first section's header/footers.
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.All" to
// export bookmarks that are in all headers/footers.
saveOptions.setHeaderFooterBookmarksExportMode(headerFooterBookmarksExportMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.HeaderFooterBookmarksExportMode.pdf", saveOptions);
int value. The returned value is one of PdfPageMode constants.public void setPageMode(int value)
Remarks:
The default value is PdfPageMode.USE_OUTLINES.
Examples:
Shows how to set instructions for some PDF readers to follow when opening an output document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "PageMode" property to "PdfPageMode.FullScreen" to get the PDF reader to open the saved
// document in full-screen mode, which takes over the monitor's display and has no controls visible.
// Set the "PageMode" property to "PdfPageMode.UseThumbs" to get the PDF reader to display a separate panel
// with a thumbnail for each page in the document.
// Set the "PageMode" property to "PdfPageMode.UseOC" to get the PDF reader to display a separate panel
// that allows us to work with any layers present in the document.
// Set the "PageMode" property to "PdfPageMode.UseOutlines" to get the PDF reader
// also to display the outline, if possible.
// Set the "PageMode" property to "PdfPageMode.UseNone" to get the PDF reader to display just the document itself.
// Set the "PageMode" property to "PdfPageMode.UseAttachments" to make visible attachments panel.
options.setPageMode(pageMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.PageMode.pdf", options);
Shows to process bookmarks in headers/footers in a document that we are rendering to PDF.
Document doc = new Document(getMyDir() + "Bookmarks in headers and footers.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Set the "PageMode" property to "PdfPageMode.UseOutlines" to display the outline navigation pane in the output PDF.
saveOptions.setPageMode(PdfPageMode.USE_OUTLINES);
// Set the "DefaultBookmarksOutlineLevel" property to "1" to display all
// bookmarks at the first level of the outline in the output PDF.
saveOptions.getOutlineOptions().setDefaultBookmarksOutlineLevel(1);
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.None" to
// not export any bookmarks that are inside headers/footers.
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.First" to
// only export bookmarks in the first section's header/footers.
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.All" to
// export bookmarks that are in all headers/footers.
saveOptions.setHeaderFooterBookmarksExportMode(headerFooterBookmarksExportMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.HeaderFooterBookmarksExportMode.pdf", saveOptions);
value - The corresponding int value. The value must be one of PdfPageMode constants.public int getImageColorSpaceExportMode()
Remarks:
The default value is PdfImageColorSpaceExportMode.AUTO.
If PdfImageColorSpaceExportMode.SIMPLE_CMYK value is specified, getImageCompression() / setImageCompression(int) option is ignored and Flate compression is used for all images in the document.
PdfImageColorSpaceExportMode.SIMPLE_CMYK value is not supported when saving to PDF/A. PdfImageColorSpaceExportMode.AUTO value will be used instead.
Examples:
Shows how to set a different color space for images in a document as we export it to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Jpeg image:");
builder.insertImage(getImageDir() + "Logo.jpg");
builder.insertParagraph();
builder.writeln("Png image:");
builder.insertImage(getImageDir() + "Transparent background logo.png");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Set the "ImageColorSpaceExportMode" property to "PdfImageColorSpaceExportMode.Auto" to get Aspose.Words to
// automatically select the color space for images in the document that it converts to PDF.
// In most cases, the color space will be RGB.
// Set the "ImageColorSpaceExportMode" property to "PdfImageColorSpaceExportMode.SimpleCmyk"
// to use the CMYK color space for all images in the saved PDF.
// Aspose.Words will also apply Flate compression to all images and ignore the "ImageCompression" property's value.
pdfSaveOptions.setImageColorSpaceExportMode(pdfImageColorSpaceExportMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.ImageColorSpaceExportMode.pdf", pdfSaveOptions);
int value. The returned value is one of PdfImageColorSpaceExportMode constants.public void setImageColorSpaceExportMode(int value)
Remarks:
The default value is PdfImageColorSpaceExportMode.AUTO.
If PdfImageColorSpaceExportMode.SIMPLE_CMYK value is specified, getImageCompression() / setImageCompression(int) option is ignored and Flate compression is used for all images in the document.
PdfImageColorSpaceExportMode.SIMPLE_CMYK value is not supported when saving to PDF/A. PdfImageColorSpaceExportMode.AUTO value will be used instead.
Examples:
Shows how to set a different color space for images in a document as we export it to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Jpeg image:");
builder.insertImage(getImageDir() + "Logo.jpg");
builder.insertParagraph();
builder.writeln("Png image:");
builder.insertImage(getImageDir() + "Transparent background logo.png");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Set the "ImageColorSpaceExportMode" property to "PdfImageColorSpaceExportMode.Auto" to get Aspose.Words to
// automatically select the color space for images in the document that it converts to PDF.
// In most cases, the color space will be RGB.
// Set the "ImageColorSpaceExportMode" property to "PdfImageColorSpaceExportMode.SimpleCmyk"
// to use the CMYK color space for all images in the saved PDF.
// Aspose.Words will also apply Flate compression to all images and ignore the "ImageCompression" property's value.
pdfSaveOptions.setImageColorSpaceExportMode(pdfImageColorSpaceExportMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.ImageColorSpaceExportMode.pdf", pdfSaveOptions);
value - The corresponding int value. The value must be one of PdfImageColorSpaceExportMode constants.public boolean getPreblendImages()
Remarks:
Preblending images may improve PDF document visual appearance in Adobe Reader and remove anti-aliasing artifacts.
In order to properly display preblended images, PDF viewer application must support /Matte entry in soft-mask image dictionary. Also preblending images may decrease PDF rendering performance.
The default value is false.
Examples:
Shows how to preblend images with transparent backgrounds while saving a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertImage(getImageDir() + "Transparent background logo.png");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "PreblendImages" property to "true" to preblend transparent images
// with a background, which may reduce artifacts.
// Set the "PreblendImages" property to "false" to render transparent images normally.
options.setPreblendImages(preblendImages);
doc.save(getArtifactsDir() + "PdfSaveOptions.PreblendImages.pdf", options);
public void setPreblendImages(boolean value)
Remarks:
Preblending images may improve PDF document visual appearance in Adobe Reader and remove anti-aliasing artifacts.
In order to properly display preblended images, PDF viewer application must support /Matte entry in soft-mask image dictionary. Also preblending images may decrease PDF rendering performance.
The default value is false.
Examples:
Shows how to preblend images with transparent backgrounds while saving a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertImage(getImageDir() + "Transparent background logo.png");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "PreblendImages" property to "true" to preblend transparent images
// with a background, which may reduce artifacts.
// Set the "PreblendImages" property to "false" to render transparent images normally.
options.setPreblendImages(preblendImages);
doc.save(getArtifactsDir() + "PdfSaveOptions.PreblendImages.pdf", options);
value - A value determining whether or not to preblend transparent images with black background color.public boolean getDisplayDocTitle()
Remarks:
If false, the title bar should instead display the name of the PDF file containing the document.
This flag is required by PDF/UA compliance. true value will be used automatically when saving to PDF/UA.
The default value is false.
Examples:
Shows how to display the title of the document as the title bar.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
doc.getBuiltInDocumentProperties().setTitle("Windows bar pdf title");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Set the "DisplayDocTitle" to "true" to get some PDF readers, such as Adobe Acrobat Pro,
// to display the value of the document's "Title" built-in property in the tab that belongs to this document.
// Set the "DisplayDocTitle" to "false" to get such readers to display the document's filename.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
{
pdfSaveOptions.setDisplayDocTitle(displayDocTitle);
}
doc.save(getArtifactsDir() + "PdfSaveOptions.DocTitle.pdf", pdfSaveOptions);
boolean value.public void setDisplayDocTitle(boolean value)
Remarks:
If false, the title bar should instead display the name of the PDF file containing the document.
This flag is required by PDF/UA compliance. true value will be used automatically when saving to PDF/UA.
The default value is false.
Examples:
Shows how to display the title of the document as the title bar.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
doc.getBuiltInDocumentProperties().setTitle("Windows bar pdf title");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Set the "DisplayDocTitle" to "true" to get some PDF readers, such as Adobe Acrobat Pro,
// to display the value of the document's "Title" built-in property in the tab that belongs to this document.
// Set the "DisplayDocTitle" to "false" to get such readers to display the document's filename.
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
{
pdfSaveOptions.setDisplayDocTitle(displayDocTitle);
}
doc.save(getArtifactsDir() + "PdfSaveOptions.DocTitle.pdf", pdfSaveOptions);
value - The corresponding boolean value.public int getDmlEffectsRenderingMode()
Remarks:
The default value is DmlEffectsRenderingMode.SIMPLIFIED.
This property is used when the document is exported to fixed page formats.
If getCompliance() / setCompliance(int) is set to PdfCompliance.PDF_A_1_A or PdfCompliance.PDF_A_1_B, property always returns DmlEffectsRenderingMode.NONE.
Examples:
Shows how to configure the rendering quality of DrawingML effects in a document as we save it to PDF.
Document doc = new Document(getMyDir() + "DrawingML shape effects.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "DmlEffectsRenderingMode" property to "DmlEffectsRenderingMode.None" to discard all DrawingML effects.
// Set the "DmlEffectsRenderingMode" property to "DmlEffectsRenderingMode.Simplified"
// to render a simplified version of DrawingML effects.
// Set the "DmlEffectsRenderingMode" property to "DmlEffectsRenderingMode.Fine" to
// render DrawingML effects with more accuracy and also with more processing cost.
options.setDmlEffectsRenderingMode(effectsRenderingMode);
Assert.assertEquals(DmlRenderingMode.DRAWING_ML, options.getDmlRenderingMode());
doc.save(getArtifactsDir() + "PdfSaveOptions.DrawingMLEffects.pdf", options);
getDmlEffectsRenderingMode in class SaveOptionsDmlEffectsRenderingMode constants.public void setDmlEffectsRenderingMode(int value)
Remarks:
The default value is DmlEffectsRenderingMode.SIMPLIFIED.
This property is used when the document is exported to fixed page formats.
If getCompliance() / setCompliance(int) is set to PdfCompliance.PDF_A_1_A or PdfCompliance.PDF_A_1_B, property always returns DmlEffectsRenderingMode.NONE.
Examples:
Shows how to configure the rendering quality of DrawingML effects in a document as we save it to PDF.
Document doc = new Document(getMyDir() + "DrawingML shape effects.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions options = new PdfSaveOptions();
// Set the "DmlEffectsRenderingMode" property to "DmlEffectsRenderingMode.None" to discard all DrawingML effects.
// Set the "DmlEffectsRenderingMode" property to "DmlEffectsRenderingMode.Simplified"
// to render a simplified version of DrawingML effects.
// Set the "DmlEffectsRenderingMode" property to "DmlEffectsRenderingMode.Fine" to
// render DrawingML effects with more accuracy and also with more processing cost.
options.setDmlEffectsRenderingMode(effectsRenderingMode);
Assert.assertEquals(DmlRenderingMode.DRAWING_ML, options.getDmlRenderingMode());
doc.save(getArtifactsDir() + "PdfSaveOptions.DrawingMLEffects.pdf", options);
setDmlEffectsRenderingMode in class SaveOptionsvalue - A value determining how DrawingML effects are rendered. The value must be one of DmlEffectsRenderingMode constants.public int getHeaderFooterBookmarksExportMode()
Remarks:
The default value is HeaderFooterBookmarksExportMode.ALL.
This property is used in conjunction with the getOutlineOptions() option.
Examples:
Shows to process bookmarks in headers/footers in a document that we are rendering to PDF.
Document doc = new Document(getMyDir() + "Bookmarks in headers and footers.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Set the "PageMode" property to "PdfPageMode.UseOutlines" to display the outline navigation pane in the output PDF.
saveOptions.setPageMode(PdfPageMode.USE_OUTLINES);
// Set the "DefaultBookmarksOutlineLevel" property to "1" to display all
// bookmarks at the first level of the outline in the output PDF.
saveOptions.getOutlineOptions().setDefaultBookmarksOutlineLevel(1);
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.None" to
// not export any bookmarks that are inside headers/footers.
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.First" to
// only export bookmarks in the first section's header/footers.
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.All" to
// export bookmarks that are in all headers/footers.
saveOptions.setHeaderFooterBookmarksExportMode(headerFooterBookmarksExportMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.HeaderFooterBookmarksExportMode.pdf", saveOptions);
int value. The returned value is one of HeaderFooterBookmarksExportMode constants.public void setHeaderFooterBookmarksExportMode(int value)
Remarks:
The default value is HeaderFooterBookmarksExportMode.ALL.
This property is used in conjunction with the getOutlineOptions() option.
Examples:
Shows to process bookmarks in headers/footers in a document that we are rendering to PDF.
Document doc = new Document(getMyDir() + "Bookmarks in headers and footers.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Set the "PageMode" property to "PdfPageMode.UseOutlines" to display the outline navigation pane in the output PDF.
saveOptions.setPageMode(PdfPageMode.USE_OUTLINES);
// Set the "DefaultBookmarksOutlineLevel" property to "1" to display all
// bookmarks at the first level of the outline in the output PDF.
saveOptions.getOutlineOptions().setDefaultBookmarksOutlineLevel(1);
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.None" to
// not export any bookmarks that are inside headers/footers.
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.First" to
// only export bookmarks in the first section's header/footers.
// Set the "HeaderFooterBookmarksExportMode" property to "HeaderFooterBookmarksExportMode.All" to
// export bookmarks that are in all headers/footers.
saveOptions.setHeaderFooterBookmarksExportMode(headerFooterBookmarksExportMode);
doc.save(getArtifactsDir() + "PdfSaveOptions.HeaderFooterBookmarksExportMode.pdf", saveOptions);
value - The corresponding int value. The value must be one of HeaderFooterBookmarksExportMode constants.public boolean getAdditionalTextPositioning()
Remarks:
If true, additional text positioning operators are written to the output PDF. This may help to overcome issues with inaccurate text positioning with some printers. The downside is the increased PDF document size.
The default value is false.
Examples:
Show how to write additional text positioning operators.
Document doc = new Document(getMyDir() + "Text positioning operators.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setTextCompression(PdfTextCompression.NONE);
// Set the "AdditionalTextPositioning" property to "true" to attempt to fix incorrect
// element positioning in the output PDF, should there be any, at the cost of increased file size.
// Set the "AdditionalTextPositioning" property to "false" to render the document as usual.
saveOptions.setAdditionalTextPositioning(applyAdditionalTextPositioning);
doc.save(getArtifactsDir() + "PdfSaveOptions.AdditionalTextPositioning.pdf", saveOptions);
boolean value.public void setAdditionalTextPositioning(boolean value)
Remarks:
If true, additional text positioning operators are written to the output PDF. This may help to overcome issues with inaccurate text positioning with some printers. The downside is the increased PDF document size.
The default value is false.
Examples:
Show how to write additional text positioning operators.
Document doc = new Document(getMyDir() + "Text positioning operators.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setTextCompression(PdfTextCompression.NONE);
// Set the "AdditionalTextPositioning" property to "true" to attempt to fix incorrect
// element positioning in the output PDF, should there be any, at the cost of increased file size.
// Set the "AdditionalTextPositioning" property to "false" to render the document as usual.
saveOptions.setAdditionalTextPositioning(applyAdditionalTextPositioning);
doc.save(getArtifactsDir() + "PdfSaveOptions.AdditionalTextPositioning.pdf", saveOptions);
value - The corresponding boolean value.public boolean getInterpolateImages()
false is specified, the flag is not written to the output document and the default behaviour of reader is used instead.
Remarks:
When the resolution of a source image is significantly lower than that of the output device, each source sample covers many device pixels. As a result, images can appear jaggy or blocky. These visual artifacts can be reduced by applying an image interpolation algorithm during rendering. Instead of painting all pixels covered by a source sample with the same color, image interpolation attempts to produce a smooth transition between adjacent sample values.
A conforming Reader may choose to not implement this feature of PDF, or may use any specific implementation of interpolation that it wishes.
The default value is false.
Interpolation flag is prohibited by PDF/A compliance. false value will be used automatically when saving to PDF/A.
Examples:
Shows how to perform interpolation on images while saving a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
BufferedImage img = ImageIO.read(new File(getImageDir() + "Transparent background logo.png"));
builder.insertImage(img);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Set the "InterpolateImages" property to "true" to get the reader that opens this document to interpolate images.
// Their resolution should be lower than that of the device that is displaying the document.
// Set the "InterpolateImages" property to "false" to make it so that the reader does not apply any interpolation.
saveOptions.setInterpolateImages(interpolateImages);
// When we open this document with a reader such as Adobe Acrobat, we will need to zoom in on the image
// to see the interpolation effect if we saved the document with it enabled.
doc.save(getArtifactsDir() + "PdfSaveOptions.InterpolateImages.pdf", saveOptions);
boolean value.public void setInterpolateImages(boolean value)
false is specified, the flag is not written to the output document and the default behaviour of reader is used instead.
Remarks:
When the resolution of a source image is significantly lower than that of the output device, each source sample covers many device pixels. As a result, images can appear jaggy or blocky. These visual artifacts can be reduced by applying an image interpolation algorithm during rendering. Instead of painting all pixels covered by a source sample with the same color, image interpolation attempts to produce a smooth transition between adjacent sample values.
A conforming Reader may choose to not implement this feature of PDF, or may use any specific implementation of interpolation that it wishes.
The default value is false.
Interpolation flag is prohibited by PDF/A compliance. false value will be used automatically when saving to PDF/A.
Examples:
Shows how to perform interpolation on images while saving a document to PDF.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
BufferedImage img = ImageIO.read(new File(getImageDir() + "Transparent background logo.png"));
builder.insertImage(img);
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Set the "InterpolateImages" property to "true" to get the reader that opens this document to interpolate images.
// Their resolution should be lower than that of the device that is displaying the document.
// Set the "InterpolateImages" property to "false" to make it so that the reader does not apply any interpolation.
saveOptions.setInterpolateImages(interpolateImages);
// When we open this document with a reader such as Adobe Acrobat, we will need to zoom in on the image
// to see the interpolation effect if we saved the document with it enabled.
doc.save(getArtifactsDir() + "PdfSaveOptions.InterpolateImages.pdf", saveOptions);
value - The corresponding boolean value.public int getCompliance()
Remarks:
Default is PdfCompliance.PDF_17.
Examples:
Shows how to set the PDF standards compliance level of saved PDF documents.
Document doc = new Document(getMyDir() + "Images.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Note that some PdfSaveOptions are prohibited when saving to one of the standards and automatically fixed.
// Use IWarningCallback to know which options are automatically fixed.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Set the "Compliance" property to "PdfCompliance.PdfA1b" to comply with the "PDF/A-1b" standard,
// which aims to preserve the visual appearance of the document as Aspose.Words convert it to PDF.
// Set the "Compliance" property to "PdfCompliance.Pdf17" to comply with the "1.7" standard.
// Set the "Compliance" property to "PdfCompliance.PdfA1a" to comply with the "PDF/A-1a" standard,
// which complies with "PDF/A-1b" as well as preserving the document structure of the original document.
// Set the "Compliance" property to "PdfCompliance.PdfUa1" to comply with the "PDF/UA-1" (ISO 14289-1) standard,
// which aims to define represent electronic documents in PDF that allow the file to be accessible.
// Set the "Compliance" property to "PdfCompliance.Pdf20" to comply with the "PDF 2.0" (ISO 32000-2) standard.
// Set the "Compliance" property to "PdfCompliance.PdfA4" to comply with the "PDF/A-4" (ISO 19004:2020) standard,
// which preserving document static visual appearance over time.
// Set the "Compliance" property to "PdfCompliance.PdfA4Ua2" to comply with both PDF/A-4 (ISO 19005-4:2020)
// and PDF/UA-2 (ISO 14289-2:2024) standards.
// Set the "Compliance" property to "PdfCompliance.PdfUa2" to comply with the PDF/UA-2 (ISO 14289-2:2024) standard.
// This helps with making documents searchable but may significantly increase the size of already large documents.
saveOptions.setCompliance(pdfCompliance);
doc.save(getArtifactsDir() + "PdfSaveOptions.Compliance.pdf", saveOptions);
int value. The returned value is one of PdfCompliance constants.public void setCompliance(int value)
Remarks:
Default is PdfCompliance.PDF_17.
Examples:
Shows how to set the PDF standards compliance level of saved PDF documents.
Document doc = new Document(getMyDir() + "Images.docx");
// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
// Note that some PdfSaveOptions are prohibited when saving to one of the standards and automatically fixed.
// Use IWarningCallback to know which options are automatically fixed.
PdfSaveOptions saveOptions = new PdfSaveOptions();
// Set the "Compliance" property to "PdfCompliance.PdfA1b" to comply with the "PDF/A-1b" standard,
// which aims to preserve the visual appearance of the document as Aspose.Words convert it to PDF.
// Set the "Compliance" property to "PdfCompliance.Pdf17" to comply with the "1.7" standard.
// Set the "Compliance" property to "PdfCompliance.PdfA1a" to comply with the "PDF/A-1a" standard,
// which complies with "PDF/A-1b" as well as preserving the document structure of the original document.
// Set the "Compliance" property to "PdfCompliance.PdfUa1" to comply with the "PDF/UA-1" (ISO 14289-1) standard,
// which aims to define represent electronic documents in PDF that allow the file to be accessible.
// Set the "Compliance" property to "PdfCompliance.Pdf20" to comply with the "PDF 2.0" (ISO 32000-2) standard.
// Set the "Compliance" property to "PdfCompliance.PdfA4" to comply with the "PDF/A-4" (ISO 19004:2020) standard,
// which preserving document static visual appearance over time.
// Set the "Compliance" property to "PdfCompliance.PdfA4Ua2" to comply with both PDF/A-4 (ISO 19005-4:2020)
// and PDF/UA-2 (ISO 14289-2:2024) standards.
// Set the "Compliance" property to "PdfCompliance.PdfUa2" to comply with the PDF/UA-2 (ISO 14289-2:2024) standard.
// This helps with making documents searchable but may significantly increase the size of already large documents.
saveOptions.setCompliance(pdfCompliance);
doc.save(getArtifactsDir() + "PdfSaveOptions.Compliance.pdf", saveOptions);
value - The corresponding int value. The value must be one of PdfCompliance constants.public boolean getCacheBackgroundGraphics()
Remarks:
Default value is true and background graphics are written to the PDF document as an xObject.
When the value is false background graphics are not cached.
Some shapes are not supported for caching(shapes with fields, bookmarks, HRefs).
Document background graphic is various shapes, charts, images placed in the footer or header, well as background and border of a page.
Examples:
Shows how to cache graphics placed in document's background.
Document doc = new Document(getMyDir() + "Background images.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setCacheBackgroundGraphics(true);
doc.save(getArtifactsDir() + "PdfSaveOptions.CacheBackgroundGraphics.pdf", saveOptions);
long asposeToPdfSize = new File(getArtifactsDir() + "PdfSaveOptions.CacheBackgroundGraphics.pdf").length();
long wordToPdfSize = new File(getMyDir() + "Background images (word to pdf).pdf").length();
Assert.assertTrue(asposeToPdfSize < wordToPdfSize);
public void setCacheBackgroundGraphics(boolean value)
Remarks:
Default value is true and background graphics are written to the PDF document as an xObject.
When the value is false background graphics are not cached.
Some shapes are not supported for caching(shapes with fields, bookmarks, HRefs).
Document background graphic is various shapes, charts, images placed in the footer or header, well as background and border of a page.
Examples:
Shows how to cache graphics placed in document's background.
Document doc = new Document(getMyDir() + "Background images.docx");
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setCacheBackgroundGraphics(true);
doc.save(getArtifactsDir() + "PdfSaveOptions.CacheBackgroundGraphics.pdf", saveOptions);
long asposeToPdfSize = new File(getArtifactsDir() + "PdfSaveOptions.CacheBackgroundGraphics.pdf").length();
long wordToPdfSize = new File(getMyDir() + "Background images (word to pdf).pdf").length();
Assert.assertTrue(asposeToPdfSize < wordToPdfSize);
value - A value determining whether or not to cache graphics placed in document's background.public int getAttachmentsEmbeddingMode()
Remarks:
Default value is PdfAttachmentsEmbeddingMode.NONE and attachments are not embedded.
PDF/A-1, PDF/A-2 and regular PDF/A-4 (not PDF/A-4f) standards do not allow embedded files. PdfAttachmentsEmbeddingMode.NONE value will be used automatically.
Examples:
Shows how to set a value determining how attachments are embedded to the PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertOleObject(getMyDir() + "Spreadsheet.xlsx", "Excel.Sheet", false, true, null);
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setAttachmentsEmbeddingMode(PdfAttachmentsEmbeddingMode.ANNOTATIONS);
doc.save(getArtifactsDir() + "PdfSaveOptions.AttachmentsEmbeddingMode.pdf", saveOptions);
PdfAttachmentsEmbeddingMode constants.public void setAttachmentsEmbeddingMode(int value)
Remarks:
Default value is PdfAttachmentsEmbeddingMode.NONE and attachments are not embedded.
PDF/A-1, PDF/A-2 and regular PDF/A-4 (not PDF/A-4f) standards do not allow embedded files. PdfAttachmentsEmbeddingMode.NONE value will be used automatically.
Examples:
Shows how to set a value determining how attachments are embedded to the PDF document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertOleObject(getMyDir() + "Spreadsheet.xlsx", "Excel.Sheet", false, true, null);
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setAttachmentsEmbeddingMode(PdfAttachmentsEmbeddingMode.ANNOTATIONS);
doc.save(getArtifactsDir() + "PdfSaveOptions.AttachmentsEmbeddingMode.pdf", saveOptions);
value - A value determining how attachments are embedded to the PDF document. The value must be one of PdfAttachmentsEmbeddingMode constants.protected java.lang.Object memberwiseClone()