public class HtmlSaveOptions extends SaveOptions implements java.lang.Cloneable
SaveFormat.HTML, SaveFormat.MHTML, SaveFormat.EPUB, SaveFormat.AZW_3 or SaveFormat.MOBI format.
To learn more, visit the Specify Save Options documentation article.
Examples:
Shows how to specify the folder for storing linked images after saving to .html.
Document doc = new Document(getMyDir() + "Rendering.docx");
File imagesDir = new File(getArtifactsDir() + "SaveHtmlWithOptions");
if (imagesDir.exists())
imagesDir.delete();
imagesDir.mkdir();
// Set an option to export form fields as plain text instead of HTML input elements.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
options.setExportTextInputFormFieldAsText(true);
options.setImagesFolder(imagesDir.getPath());
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveHtmlWithOptions.html", options);
Shows how to use a specific encoding when saving a document to .epub.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Use a SaveOptions object to specify the encoding for a document that we will save.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setSaveFormat(SaveFormat.EPUB);
saveOptions.setEncoding(StandardCharsets.UTF_8);
// By default, an output .epub document will have all of its contents in one HTML part.
// A split criterion allows us to segment the document into several HTML parts.
// We will set the criteria to split the document into heading paragraphs.
// This is useful for readers who cannot read HTML files more significant than a specific size.
saveOptions.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
// Specify that we want to export document properties.
saveOptions.setExportDocumentProperties(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.Doc2EpubSaveOptions.epub", saveOptions);
Shows how to split a document into parts and save them.
public void documentPartsFileNames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
String outFileName = "SavingCallback.DocumentPartsFileNames.html";
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// If we save the document normally, there will be one output HTML
// document with all the source document's contents.
// Set the "DocumentSplitCriteria" property to "DocumentSplitCriteria.SectionBreak" to
// save our document to multiple HTML files: one for each section.
options.setDocumentSplitCriteria(DocumentSplitCriteria.SECTION_BREAK);
// Assign a custom callback to the "DocumentPartSavingCallback" property to alter the document part saving logic.
options.setDocumentPartSavingCallback(new SavedDocumentPartRename(outFileName, options.getDocumentSplitCriteria()));
// If we convert a document that contains images into html, we will end up with one html file which links to several images.
// Each image will be in the form of a file in the local file system.
// There is also a callback that can customize the name and file system location of each image.
options.setImageSavingCallback(new SavedImageRename(outFileName));
doc.save(getArtifactsDir() + outFileName, options);
}
/// <summary>
/// Sets custom filenames for output documents that the saving operation splits a document into.
/// </summary>
private static class SavedDocumentPartRename implements IDocumentPartSavingCallback {
public SavedDocumentPartRename(String outFileName, int documentSplitCriteria) {
mOutFileName = outFileName;
mDocumentSplitCriteria = documentSplitCriteria;
}
public void documentPartSaving(DocumentPartSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
String partType = "";
switch (mDocumentSplitCriteria) {
case DocumentSplitCriteria.PAGE_BREAK:
partType = "Page";
break;
case DocumentSplitCriteria.COLUMN_BREAK:
partType = "Column";
break;
case DocumentSplitCriteria.SECTION_BREAK:
partType = "Section";
break;
case DocumentSplitCriteria.HEADING_PARAGRAPH:
partType = "Paragraph from heading";
break;
}
String partFileName = MessageFormat.format("{0} part {1}, of type {2}.{3}", mOutFileName, ++mCount, partType, FilenameUtils.getExtension(args.getDocumentPartFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output part file:
args.setDocumentPartFileName(partFileName);
// 2 - Create a custom stream for the output part file:
try (FileOutputStream outputStream = new FileOutputStream(getArtifactsDir() + partFileName)) {
args.setDocumentPartStream(outputStream);
}
Assert.assertNotNull(args.getDocumentPartStream());
Assert.assertFalse(args.getKeepDocumentPartStreamOpen());
}
private int mCount;
private final String mOutFileName;
private final int mDocumentSplitCriteria;
}
/// <summary>
/// Sets custom filenames for image files that an HTML conversion creates.
/// </summary>
public static class SavedImageRename implements IImageSavingCallback {
public SavedImageRename(String outFileName) {
mOutFileName = outFileName;
}
public void imageSaving(ImageSavingArgs args) throws Exception {
String imageFileName = MessageFormat.format("{0} shape {1}, of type {2}.{3}", mOutFileName, ++mCount, args.getCurrentShape().getShapeType(), FilenameUtils.getExtension(args.getImageFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output image file:
args.setImageFileName(imageFileName);
// 2 - Create a custom stream for the output image file:
args.setImageStream(new FileOutputStream(getArtifactsDir() + imageFileName));
Assert.assertNotNull(args.getImageStream());
Assert.assertTrue(args.isImageAvailable());
Assert.assertFalse(args.getKeepImageStreamOpen());
}
private int mCount;
private final String mOutFileName;
}
| Constructor and Description |
|---|
HtmlSaveOptions()
Initializes a new instance of this class that can be used to save a document in the
SaveFormat.HTML format. |
HtmlSaveOptions(int saveFormat)
Initializes a new instance of this class.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
getAllowNegativeIndent()
Specifies whether negative left and right indents of paragraphs are normalized when saving to HTML, MHTML or EPUB.
|
java.lang.String |
getCssClassNamePrefix()
Specifies a prefix which is added to all CSS class names.
|
ICssSavingCallback |
getCssSavingCallback()
Allows to control how CSS styles are saved when a document is saved to HTML, MHTML or EPUB.
|
java.lang.String |
getCssStyleSheetFileName()
Specifies the path and the name of the Cascading Style Sheet (CSS) file written when a document is exported to HTML.
|
int |
getCssStyleSheetType()
Specifies how CSS (Cascading Style Sheet) styles are exported to HTML, MHTML or EPUB.
|
IDocumentPartSavingCallback |
getDocumentPartSavingCallback()
Allows to control how document parts are saved when a document is saved to HTML or EPUB.
|
int |
getDocumentSplitCriteria()
Specifies how the document should be split when saving to
SaveFormat.HTML, SaveFormat.EPUB or SaveFormat.AZW_3 format. |
int |
getDocumentSplitHeadingLevel()
Specifies the maximum level of headings at which to split the document.
|
java.nio.charset.Charset |
getEncoding() |
boolean |
getExportCidUrlsForMhtmlResources()
Specifies whether to use CID (Content-ID) URLs to reference resources (images, fonts, CSS) included in MHTML documents.
|
boolean |
getExportDocumentProperties()
Specifies whether to export built-in and custom document properties to HTML, MHTML or EPUB.
|
boolean |
getExportDropDownFormFieldAsText()
Controls how drop-down form fields are saved to HTML or MHTML.
|
boolean |
getExportFontResources()
Specifies whether font resources should be exported to HTML, MHTML or EPUB.
|
boolean |
getExportFontsAsBase64()
Specifies whether fonts resources should be embedded to HTML in Base64 encoding.
|
int |
getExportHeadersFootersMode()
Specifies how headers and footers are output to HTML, MHTML or EPUB.
|
boolean |
getExportImagesAsBase64()
Specifies whether images are saved in Base64 format to the output HTML, MHTML or EPUB.
|
boolean |
getExportLanguageInformation()
Specifies whether language information is exported to HTML, MHTML or EPUB.
|
int |
getExportListLabels()
Controls how list labels are output to HTML, MHTML or EPUB.
|
boolean |
getExportOriginalUrlForLinkedImages()
Specifies whether original URL should be used as the URL of the linked images.
|
boolean |
getExportPageMargins()
Specifies whether page margins is exported to HTML, MHTML or EPUB.
|
boolean |
getExportPageSetup()
Specifies whether page setup is exported to HTML, MHTML or EPUB.
|
boolean |
getExportRelativeFontSize()
Specifies whether font sizes should be output in relative units when saving to HTML, MHTML or EPUB.
|
boolean |
getExportRoundtripInformation()
Specifies whether to write the roundtrip information when saving to HTML, MHTML or EPUB.
|
boolean |
getExportShapesAsSvg()
Controls whether
Shape nodes are converted to SVG images when saving to HTML, MHTML, EPUB or AZW3. |
boolean |
getExportTextInputFormFieldAsText()
Controls how text input form fields are saved to HTML or MHTML.
|
boolean |
getExportTocPageNumbers()
Specifies whether to write page numbers to table of contents when saving HTML, MHTML and EPUB.
|
boolean |
getExportXhtmlTransitional()
Specifies whether to write the DOCTYPE declaration when saving to HTML or MHTML.
|
int |
getFontResourcesSubsettingSizeThreshold()
Controls which font resources need subsetting when saving to HTML, MHTML or EPUB.
|
IFontSavingCallback |
getFontSavingCallback()
Allows to control how fonts are saved when a document is saved to HTML, MHTML or EPUB.
|
java.lang.String |
getFontsFolder()
Specifies the physical folder where fonts are saved when exporting a document to HTML.
|
java.lang.String |
getFontsFolderAlias()
Specifies the name of the folder used to construct font URIs written into an HTML document.
|
int |
getHtmlVersion()
Specifies version of HTML standard that should be used when saving the document to HTML or MHTML.
|
int |
getImageResolution()
Specifies the output resolution for images when exporting to HTML, MHTML or EPUB.
|
IImageSavingCallback |
getImageSavingCallback()
Allows to control how images are saved when a document is saved to HTML, MHTML or EPUB.
|
java.lang.String |
getImagesFolder()
Specifies the physical folder where images are saved when exporting a document to HTML format.
|
java.lang.String |
getImagesFolderAlias()
Specifies the name of the folder used to construct image URIs written into an HTML document.
|
int |
getMetafileFormat()
Specifies in what format metafiles are saved when exporting to HTML, MHTML, or EPUB.
|
int |
getNavigationMapLevel()
Specifies the maximum level of headings populated to the navigation map when exporting to EPUB, MOBI, or AZW3 formats.
|
int |
getOfficeMathOutputMode()
Controls how OfficeMath objects are exported to HTML, MHTML or EPUB.
|
boolean |
getRemoveJavaScriptFromLinks()
Specifies whether JavaScript will be removed from links.
|
boolean |
getReplaceBackslashWithYenSign()
Specifies whether backslash characters should be replaced with yen signs.
|
boolean |
getResolveFontNames()
Specifies whether font family names used in the document are resolved and substituted according to
Document.getFontSettings() / Document.setFontSettings(com.aspose.words.FontSettings) when being written into HTML-based formats. |
java.lang.String |
getResourceFolder()
Specifies a physical folder where all resources like images, fonts, and external CSS are saved when a document is exported to HTML.
|
java.lang.String |
getResourceFolderAlias()
Specifies the name of the folder used to construct URIs of all resources written into an HTML document.
|
int |
getSaveFormat()
Specifies the format in which the document will be saved if this save options object is used.
|
boolean |
getScaleImageToShapeSize()
Specifies whether images are scaled by Aspose.Words to the bounding shape size when exporting to HTML, MHTML or EPUB.
|
int |
getTableWidthOutputMode()
Controls how table, row and cell widths are exported to HTML, MHTML or EPUB.
|
protected java.lang.Object |
memberwiseClone() |
void |
setAllowNegativeIndent(boolean value)
Specifies whether negative left and right indents of paragraphs are normalized when saving to HTML, MHTML or EPUB.
|
void |
setCssClassNamePrefix(java.lang.String value)
Specifies a prefix which is added to all CSS class names.
|
void |
setCssSavingCallback(ICssSavingCallback value)
Allows to control how CSS styles are saved when a document is saved to HTML, MHTML or EPUB.
|
void |
setCssStyleSheetFileName(java.lang.String value)
Specifies the path and the name of the Cascading Style Sheet (CSS) file written when a document is exported to HTML.
|
void |
setCssStyleSheetType(int value)
Specifies how CSS (Cascading Style Sheet) styles are exported to HTML, MHTML or EPUB.
|
void |
setDocumentPartSavingCallback(IDocumentPartSavingCallback value)
Allows to control how document parts are saved when a document is saved to HTML or EPUB.
|
void |
setDocumentSplitCriteria(int value)
Specifies how the document should be split when saving to
SaveFormat.HTML, SaveFormat.EPUB or SaveFormat.AZW_3 format. |
void |
setDocumentSplitHeadingLevel(int value)
Specifies the maximum level of headings at which to split the document.
|
void |
setEncoding(java.nio.charset.Charset value) |
void |
setExportCidUrlsForMhtmlResources(boolean value)
Specifies whether to use CID (Content-ID) URLs to reference resources (images, fonts, CSS) included in MHTML documents.
|
void |
setExportDocumentProperties(boolean value)
Specifies whether to export built-in and custom document properties to HTML, MHTML or EPUB.
|
void |
setExportDropDownFormFieldAsText(boolean value)
Controls how drop-down form fields are saved to HTML or MHTML.
|
void |
setExportFontResources(boolean value)
Specifies whether font resources should be exported to HTML, MHTML or EPUB.
|
void |
setExportFontsAsBase64(boolean value)
Specifies whether fonts resources should be embedded to HTML in Base64 encoding.
|
void |
setExportHeadersFootersMode(int value)
Specifies how headers and footers are output to HTML, MHTML or EPUB.
|
void |
setExportImagesAsBase64(boolean value)
Specifies whether images are saved in Base64 format to the output HTML, MHTML or EPUB.
|
void |
setExportLanguageInformation(boolean value)
Specifies whether language information is exported to HTML, MHTML or EPUB.
|
void |
setExportListLabels(int value)
Controls how list labels are output to HTML, MHTML or EPUB.
|
void |
setExportOriginalUrlForLinkedImages(boolean value)
Specifies whether original URL should be used as the URL of the linked images.
|
void |
setExportPageMargins(boolean value)
Specifies whether page margins is exported to HTML, MHTML or EPUB.
|
void |
setExportPageSetup(boolean value)
Specifies whether page setup is exported to HTML, MHTML or EPUB.
|
void |
setExportRelativeFontSize(boolean value)
Specifies whether font sizes should be output in relative units when saving to HTML, MHTML or EPUB.
|
void |
setExportRoundtripInformation(boolean value)
Specifies whether to write the roundtrip information when saving to HTML, MHTML or EPUB.
|
void |
setExportShapesAsSvg(boolean value)
Controls whether
Shape nodes are converted to SVG images when saving to HTML, MHTML, EPUB or AZW3. |
void |
setExportTextInputFormFieldAsText(boolean value)
Controls how text input form fields are saved to HTML or MHTML.
|
void |
setExportTocPageNumbers(boolean value)
Specifies whether to write page numbers to table of contents when saving HTML, MHTML and EPUB.
|
void |
setExportXhtmlTransitional(boolean value)
Specifies whether to write the DOCTYPE declaration when saving to HTML or MHTML.
|
void |
setFontResourcesSubsettingSizeThreshold(int value)
Controls which font resources need subsetting when saving to HTML, MHTML or EPUB.
|
void |
setFontSavingCallback(IFontSavingCallback value)
Allows to control how fonts are saved when a document is saved to HTML, MHTML or EPUB.
|
void |
setFontsFolder(java.lang.String value)
Specifies the physical folder where fonts are saved when exporting a document to HTML.
|
void |
setFontsFolderAlias(java.lang.String value)
Specifies the name of the folder used to construct font URIs written into an HTML document.
|
void |
setHtmlVersion(int value)
Specifies version of HTML standard that should be used when saving the document to HTML or MHTML.
|
void |
setImageResolution(int value)
Specifies the output resolution for images when exporting to HTML, MHTML or EPUB.
|
void |
setImageSavingCallback(IImageSavingCallback value)
Allows to control how images are saved when a document is saved to HTML, MHTML or EPUB.
|
void |
setImagesFolder(java.lang.String value)
Specifies the physical folder where images are saved when exporting a document to HTML format.
|
void |
setImagesFolderAlias(java.lang.String value)
Specifies the name of the folder used to construct image URIs written into an HTML document.
|
void |
setMetafileFormat(int value)
Specifies in what format metafiles are saved when exporting to HTML, MHTML, or EPUB.
|
void |
setNavigationMapLevel(int value)
Specifies the maximum level of headings populated to the navigation map when exporting to EPUB, MOBI, or AZW3 formats.
|
void |
setOfficeMathOutputMode(int value)
Controls how OfficeMath objects are exported to HTML, MHTML or EPUB.
|
void |
setRemoveJavaScriptFromLinks(boolean value)
Specifies whether JavaScript will be removed from links.
|
void |
setReplaceBackslashWithYenSign(boolean value)
Specifies whether backslash characters should be replaced with yen signs.
|
void |
setResolveFontNames(boolean value)
Specifies whether font family names used in the document are resolved and substituted according to
Document.getFontSettings() / Document.setFontSettings(com.aspose.words.FontSettings) when being written into HTML-based formats. |
void |
setResourceFolder(java.lang.String value)
Specifies a physical folder where all resources like images, fonts, and external CSS are saved when a document is exported to HTML.
|
void |
setResourceFolderAlias(java.lang.String value)
Specifies the name of the folder used to construct URIs of all resources written into an HTML document.
|
void |
setSaveFormat(int value)
Specifies the format in which the document will be saved if this save options object is used.
|
void |
setScaleImageToShapeSize(boolean value)
Specifies whether images are scaled by Aspose.Words to the bounding shape size when exporting to HTML, MHTML or EPUB.
|
void |
setTableWidthOutputMode(int value)
Controls how table, row and cell widths are exported to HTML, MHTML or EPUB.
|
createSaveOptions, createSaveOptions, getAllowEmbeddingPostScriptFonts, getCustomTimeZoneInfo, getDefaultTemplate, getDml3DEffectsRenderingMode, getDmlEffectsRenderingMode, getDmlRenderingMode, getExportGeneratorName, getImlRenderingMode, getMemoryOptimization, getPrettyFormat, getProgressCallback, getTempFolder, getUpdateAmbiguousTextFont, getUpdateCreatedTimeProperty, getUpdateFields, getUpdateLastPrintedProperty, getUpdateLastSavedTimeProperty, getUseAntiAliasing, getUseHighQualityRendering, setAllowEmbeddingPostScriptFonts, setCustomTimeZoneInfo, setDefaultTemplate, setDml3DEffectsRenderingMode, setDmlEffectsRenderingMode, setDmlRenderingMode, setExportGeneratorName, setImlRenderingMode, setMemoryOptimization, setPrettyFormat, setProgressCallback, setTempFolder, setUpdateAmbiguousTextFont, setUpdateCreatedTimeProperty, setUpdateFields, setUpdateLastPrintedProperty, setUpdateLastSavedTimeProperty, setUseAntiAliasing, setUseHighQualityRenderingpublic HtmlSaveOptions()
SaveFormat.HTML format.
Examples:
Shows how to use a specific encoding when saving a document to .epub.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Use a SaveOptions object to specify the encoding for a document that we will save.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setSaveFormat(SaveFormat.EPUB);
saveOptions.setEncoding(StandardCharsets.UTF_8);
// By default, an output .epub document will have all of its contents in one HTML part.
// A split criterion allows us to segment the document into several HTML parts.
// We will set the criteria to split the document into heading paragraphs.
// This is useful for readers who cannot read HTML files more significant than a specific size.
saveOptions.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
// Specify that we want to export document properties.
saveOptions.setExportDocumentProperties(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.Doc2EpubSaveOptions.epub", saveOptions);
public HtmlSaveOptions(int saveFormat)
public int getSaveFormat()
SaveFormat.HTML, SaveFormat.MHTML, SaveFormat.EPUB, SaveFormat.AZW_3 or SaveFormat.MOBI.
Examples:
Shows how to use a specific encoding when saving a document to .epub.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Use a SaveOptions object to specify the encoding for a document that we will save.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setSaveFormat(SaveFormat.EPUB);
saveOptions.setEncoding(StandardCharsets.UTF_8);
// By default, an output .epub document will have all of its contents in one HTML part.
// A split criterion allows us to segment the document into several HTML parts.
// We will set the criteria to split the document into heading paragraphs.
// This is useful for readers who cannot read HTML files more significant than a specific size.
saveOptions.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
// Specify that we want to export document properties.
saveOptions.setExportDocumentProperties(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.Doc2EpubSaveOptions.epub", saveOptions);
getSaveFormat in class SaveOptionsint value. The returned value is one of SaveFormat constants.public void setSaveFormat(int value)
SaveFormat.HTML, SaveFormat.MHTML, SaveFormat.EPUB, SaveFormat.AZW_3 or SaveFormat.MOBI.
Examples:
Shows how to use a specific encoding when saving a document to .epub.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Use a SaveOptions object to specify the encoding for a document that we will save.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setSaveFormat(SaveFormat.EPUB);
saveOptions.setEncoding(StandardCharsets.UTF_8);
// By default, an output .epub document will have all of its contents in one HTML part.
// A split criterion allows us to segment the document into several HTML parts.
// We will set the criteria to split the document into heading paragraphs.
// This is useful for readers who cannot read HTML files more significant than a specific size.
saveOptions.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
// Specify that we want to export document properties.
saveOptions.setExportDocumentProperties(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.Doc2EpubSaveOptions.epub", saveOptions);
setSaveFormat in class SaveOptionsvalue - The corresponding int value. The value must be one of SaveFormat constants.public boolean getAllowNegativeIndent()
false.
Remarks:
When negative indent is not allowed, it is exported as zero margin to HTML. When negative indent is allowed, a paragraph might appear partially outside of the browser window.
Examples:
Shows how to preserve negative indents in the output .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a table with a negative indent, which will push it to the left past the left page boundary.
Table table = builder.startTable();
builder.insertCell();
builder.write("Row 1, Cell 1");
builder.insertCell();
builder.write("Row 1, Cell 2");
builder.endTable();
table.setLeftIndent(-36);
table.setPreferredWidth(PreferredWidth.fromPoints(144.0));
builder.insertBreak(BreakType.PARAGRAPH_BREAK);
// Insert a table with a positive indent, which will push the table to the right.
table = builder.startTable();
builder.insertCell();
builder.write("Row 1, Cell 1");
builder.insertCell();
builder.write("Row 1, Cell 2");
builder.endTable();
table.setLeftIndent(36.0);
table.setPreferredWidth(PreferredWidth.fromPoints(144.0));
// When we save a document to HTML, Aspose.Words will only preserve negative indents
// such as the one we have applied to the first table if we set the "AllowNegativeIndent" flag
// in a SaveOptions object that we will pass to "true".
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setAllowNegativeIndent(allowNegativeIndent);
options.setTableWidthOutputMode(HtmlElementSizeOutputMode.RELATIVE_ONLY);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.NegativeIndent.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.NegativeIndent.html"), StandardCharsets.UTF_8);
if (allowNegativeIndent) {
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:-41.65pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:30.35pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
}
else
{
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:30.35pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
}
boolean value.public void setAllowNegativeIndent(boolean value)
false.
Remarks:
When negative indent is not allowed, it is exported as zero margin to HTML. When negative indent is allowed, a paragraph might appear partially outside of the browser window.
Examples:
Shows how to preserve negative indents in the output .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a table with a negative indent, which will push it to the left past the left page boundary.
Table table = builder.startTable();
builder.insertCell();
builder.write("Row 1, Cell 1");
builder.insertCell();
builder.write("Row 1, Cell 2");
builder.endTable();
table.setLeftIndent(-36);
table.setPreferredWidth(PreferredWidth.fromPoints(144.0));
builder.insertBreak(BreakType.PARAGRAPH_BREAK);
// Insert a table with a positive indent, which will push the table to the right.
table = builder.startTable();
builder.insertCell();
builder.write("Row 1, Cell 1");
builder.insertCell();
builder.write("Row 1, Cell 2");
builder.endTable();
table.setLeftIndent(36.0);
table.setPreferredWidth(PreferredWidth.fromPoints(144.0));
// When we save a document to HTML, Aspose.Words will only preserve negative indents
// such as the one we have applied to the first table if we set the "AllowNegativeIndent" flag
// in a SaveOptions object that we will pass to "true".
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setAllowNegativeIndent(allowNegativeIndent);
options.setTableWidthOutputMode(HtmlElementSizeOutputMode.RELATIVE_ONLY);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.NegativeIndent.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.NegativeIndent.html"), StandardCharsets.UTF_8);
if (allowNegativeIndent) {
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:-41.65pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:30.35pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
}
else
{
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:30.35pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
}
value - The corresponding boolean value.public java.lang.String getCssStyleSheetFileName()
Remarks:
This property has effect only when saving a document to HTML format and external CSS style sheet is requested using getCssStyleSheetType() / setCssStyleSheetType(int).
If this property is empty, the CSS file will be saved into the same folder and with the same name as the HTML document but with the ".css" extension.
If only path but no file name is specified in this property, the CSS file will be saved into the specified folder and will have the same name as the HTML document but with the ".css" extension.
If the folder specified by this property doesn't exist, it will be created automatically before the CSS file is saved.
Another way to specify a folder where external CSS file is saved is to use getResourceFolder() / setResourceFolder(java.lang.String).
Examples:
Shows how to work with CSS stylesheets that an HTML conversion creates.
public void externalCssFilenames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// Set the "CssStylesheetType" property to "CssStyleSheetType.External" to
// accompany a saved HTML document with an external CSS stylesheet file.
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
// Below are two ways of specifying directories and filenames for output CSS stylesheets.
// 1 - Use the "CssStyleSheetFileName" property to assign a filename to our stylesheet:
options.setCssStyleSheetFileName(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css");
// 2 - Use a custom callback to name our stylesheet:
options.setCssSavingCallback(new CustomCssSavingCallback(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css", true, false));
doc.save(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.html", options);
}
/// <summary>
/// Sets a custom filename, along with other parameters for an external CSS stylesheet.
/// </summary>
private static class CustomCssSavingCallback implements ICssSavingCallback {
public CustomCssSavingCallback(String cssDocFilename, boolean isExportNeeded, boolean keepCssStreamOpen) {
mCssTextFileName = cssDocFilename;
mIsExportNeeded = isExportNeeded;
mKeepCssStreamOpen = keepCssStreamOpen;
}
public void cssSaving(CssSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
args.setCssStream(new FileOutputStream(mCssTextFileName));
args.isExportNeeded(mIsExportNeeded);
args.setKeepCssStreamOpen(mKeepCssStreamOpen);
}
private final String mCssTextFileName;
private final boolean mIsExportNeeded;
private final boolean mKeepCssStreamOpen;
}
String value.getResourceFolder(),
setResourceFolder(java.lang.String),
getResourceFolderAlias(),
setResourceFolderAlias(java.lang.String),
getCssStyleSheetType(),
setCssStyleSheetType(int)public void setCssStyleSheetFileName(java.lang.String value)
Remarks:
This property has effect only when saving a document to HTML format and external CSS style sheet is requested using getCssStyleSheetType() / setCssStyleSheetType(int).
If this property is empty, the CSS file will be saved into the same folder and with the same name as the HTML document but with the ".css" extension.
If only path but no file name is specified in this property, the CSS file will be saved into the specified folder and will have the same name as the HTML document but with the ".css" extension.
If the folder specified by this property doesn't exist, it will be created automatically before the CSS file is saved.
Another way to specify a folder where external CSS file is saved is to use getResourceFolder() / setResourceFolder(java.lang.String).
Examples:
Shows how to work with CSS stylesheets that an HTML conversion creates.
public void externalCssFilenames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// Set the "CssStylesheetType" property to "CssStyleSheetType.External" to
// accompany a saved HTML document with an external CSS stylesheet file.
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
// Below are two ways of specifying directories and filenames for output CSS stylesheets.
// 1 - Use the "CssStyleSheetFileName" property to assign a filename to our stylesheet:
options.setCssStyleSheetFileName(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css");
// 2 - Use a custom callback to name our stylesheet:
options.setCssSavingCallback(new CustomCssSavingCallback(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css", true, false));
doc.save(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.html", options);
}
/// <summary>
/// Sets a custom filename, along with other parameters for an external CSS stylesheet.
/// </summary>
private static class CustomCssSavingCallback implements ICssSavingCallback {
public CustomCssSavingCallback(String cssDocFilename, boolean isExportNeeded, boolean keepCssStreamOpen) {
mCssTextFileName = cssDocFilename;
mIsExportNeeded = isExportNeeded;
mKeepCssStreamOpen = keepCssStreamOpen;
}
public void cssSaving(CssSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
args.setCssStream(new FileOutputStream(mCssTextFileName));
args.isExportNeeded(mIsExportNeeded);
args.setKeepCssStreamOpen(mKeepCssStreamOpen);
}
private final String mCssTextFileName;
private final boolean mIsExportNeeded;
private final boolean mKeepCssStreamOpen;
}
value - The corresponding String value.getResourceFolder(),
setResourceFolder(java.lang.String),
getResourceFolderAlias(),
setResourceFolderAlias(java.lang.String),
getCssStyleSheetType(),
setCssStyleSheetType(int)public int getCssStyleSheetType()
CssStyleSheetType.INLINE for HTML/MHTML and CssStyleSheetType.EXTERNAL for EPUB.
Remarks:
Saving CSS style sheet into an external file is only supported when saving to HTML. When you are exporting to one of the container formats (EPUB or MHTML) and specifying CssStyleSheetType.EXTERNAL, CSS file will be encapsulated into the output package.
Examples:
Shows how to work with CSS stylesheets that an HTML conversion creates.
public void externalCssFilenames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// Set the "CssStylesheetType" property to "CssStyleSheetType.External" to
// accompany a saved HTML document with an external CSS stylesheet file.
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
// Below are two ways of specifying directories and filenames for output CSS stylesheets.
// 1 - Use the "CssStyleSheetFileName" property to assign a filename to our stylesheet:
options.setCssStyleSheetFileName(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css");
// 2 - Use a custom callback to name our stylesheet:
options.setCssSavingCallback(new CustomCssSavingCallback(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css", true, false));
doc.save(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.html", options);
}
/// <summary>
/// Sets a custom filename, along with other parameters for an external CSS stylesheet.
/// </summary>
private static class CustomCssSavingCallback implements ICssSavingCallback {
public CustomCssSavingCallback(String cssDocFilename, boolean isExportNeeded, boolean keepCssStreamOpen) {
mCssTextFileName = cssDocFilename;
mIsExportNeeded = isExportNeeded;
mKeepCssStreamOpen = keepCssStreamOpen;
}
public void cssSaving(CssSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
args.setCssStream(new FileOutputStream(mCssTextFileName));
args.isExportNeeded(mIsExportNeeded);
args.setKeepCssStreamOpen(mKeepCssStreamOpen);
}
private final String mCssTextFileName;
private final boolean mIsExportNeeded;
private final boolean mKeepCssStreamOpen;
}
int value. The returned value is one of CssStyleSheetType constants.getCssStyleSheetFileName(),
setCssStyleSheetFileName(java.lang.String)public void setCssStyleSheetType(int value)
CssStyleSheetType.INLINE for HTML/MHTML and CssStyleSheetType.EXTERNAL for EPUB.
Remarks:
Saving CSS style sheet into an external file is only supported when saving to HTML. When you are exporting to one of the container formats (EPUB or MHTML) and specifying CssStyleSheetType.EXTERNAL, CSS file will be encapsulated into the output package.
Examples:
Shows how to work with CSS stylesheets that an HTML conversion creates.
public void externalCssFilenames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// Set the "CssStylesheetType" property to "CssStyleSheetType.External" to
// accompany a saved HTML document with an external CSS stylesheet file.
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
// Below are two ways of specifying directories and filenames for output CSS stylesheets.
// 1 - Use the "CssStyleSheetFileName" property to assign a filename to our stylesheet:
options.setCssStyleSheetFileName(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css");
// 2 - Use a custom callback to name our stylesheet:
options.setCssSavingCallback(new CustomCssSavingCallback(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css", true, false));
doc.save(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.html", options);
}
/// <summary>
/// Sets a custom filename, along with other parameters for an external CSS stylesheet.
/// </summary>
private static class CustomCssSavingCallback implements ICssSavingCallback {
public CustomCssSavingCallback(String cssDocFilename, boolean isExportNeeded, boolean keepCssStreamOpen) {
mCssTextFileName = cssDocFilename;
mIsExportNeeded = isExportNeeded;
mKeepCssStreamOpen = keepCssStreamOpen;
}
public void cssSaving(CssSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
args.setCssStream(new FileOutputStream(mCssTextFileName));
args.isExportNeeded(mIsExportNeeded);
args.setKeepCssStreamOpen(mKeepCssStreamOpen);
}
private final String mCssTextFileName;
private final boolean mIsExportNeeded;
private final boolean mKeepCssStreamOpen;
}
value - The corresponding int value. The value must be one of CssStyleSheetType constants.getCssStyleSheetFileName(),
setCssStyleSheetFileName(java.lang.String)public java.lang.String getCssClassNamePrefix()
String value.java.lang.IllegalArgumentException - The value is not empty and is not a valid CSS identifier.
Remarks:
If this value is not empty, all CSS classes generated by Aspose.Words will start with the specified prefix. This might be useful, for example, if you add custom CSS to generated documents and want to prevent class name conflicts.
If the value is not null or empty, it must be a valid CSS identifier.
Examples:
Shows how to save a document to HTML, and add a prefix to all of its CSS class names.
Document doc = new Document(getMyDir() + "Paragraphs.docx");
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
{
saveOptions.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
saveOptions.setCssClassNamePrefix("myprefix-");
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.CssClassNamePrefix.html", saveOptions);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.CssClassNamePrefix.html"), StandardCharsets.UTF_8);
Assert.assertTrue(outDocContents.contains("<p class=\"myprefix-Header\">"));
Assert.assertTrue(outDocContents.contains("<p class=\"myprefix-Footer\">"));
outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.CssClassNamePrefix.css"), StandardCharsets.UTF_8);
Assert.assertTrue(outDocContents.contains(".myprefix-Footer { margin-bottom:0pt; line-height:normal; font-family:Arial; font-size:11pt; -aw-style-name:footer }\r\n" +
".myprefix-Header { margin-bottom:0pt; line-height:normal; font-family:Arial; font-size:11pt; -aw-style-name:header }\r\n"));
public void setCssClassNamePrefix(java.lang.String value)
value - The corresponding String value.java.lang.IllegalArgumentException - The value is not empty and is not a valid CSS identifier.
Remarks:
If this value is not empty, all CSS classes generated by Aspose.Words will start with the specified prefix. This might be useful, for example, if you add custom CSS to generated documents and want to prevent class name conflicts.
If the value is not null or empty, it must be a valid CSS identifier.
Examples:
Shows how to save a document to HTML, and add a prefix to all of its CSS class names.
Document doc = new Document(getMyDir() + "Paragraphs.docx");
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
{
saveOptions.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
saveOptions.setCssClassNamePrefix("myprefix-");
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.CssClassNamePrefix.html", saveOptions);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.CssClassNamePrefix.html"), StandardCharsets.UTF_8);
Assert.assertTrue(outDocContents.contains("<p class=\"myprefix-Header\">"));
Assert.assertTrue(outDocContents.contains("<p class=\"myprefix-Footer\">"));
outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.CssClassNamePrefix.css"), StandardCharsets.UTF_8);
Assert.assertTrue(outDocContents.contains(".myprefix-Footer { margin-bottom:0pt; line-height:normal; font-family:Arial; font-size:11pt; -aw-style-name:footer }\r\n" +
".myprefix-Header { margin-bottom:0pt; line-height:normal; font-family:Arial; font-size:11pt; -aw-style-name:header }\r\n"));
public IDocumentPartSavingCallback getDocumentPartSavingCallback()
Examples:
Shows how to split a document into parts and save them.
public void documentPartsFileNames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
String outFileName = "SavingCallback.DocumentPartsFileNames.html";
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// If we save the document normally, there will be one output HTML
// document with all the source document's contents.
// Set the "DocumentSplitCriteria" property to "DocumentSplitCriteria.SectionBreak" to
// save our document to multiple HTML files: one for each section.
options.setDocumentSplitCriteria(DocumentSplitCriteria.SECTION_BREAK);
// Assign a custom callback to the "DocumentPartSavingCallback" property to alter the document part saving logic.
options.setDocumentPartSavingCallback(new SavedDocumentPartRename(outFileName, options.getDocumentSplitCriteria()));
// If we convert a document that contains images into html, we will end up with one html file which links to several images.
// Each image will be in the form of a file in the local file system.
// There is also a callback that can customize the name and file system location of each image.
options.setImageSavingCallback(new SavedImageRename(outFileName));
doc.save(getArtifactsDir() + outFileName, options);
}
/// <summary>
/// Sets custom filenames for output documents that the saving operation splits a document into.
/// </summary>
private static class SavedDocumentPartRename implements IDocumentPartSavingCallback {
public SavedDocumentPartRename(String outFileName, int documentSplitCriteria) {
mOutFileName = outFileName;
mDocumentSplitCriteria = documentSplitCriteria;
}
public void documentPartSaving(DocumentPartSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
String partType = "";
switch (mDocumentSplitCriteria) {
case DocumentSplitCriteria.PAGE_BREAK:
partType = "Page";
break;
case DocumentSplitCriteria.COLUMN_BREAK:
partType = "Column";
break;
case DocumentSplitCriteria.SECTION_BREAK:
partType = "Section";
break;
case DocumentSplitCriteria.HEADING_PARAGRAPH:
partType = "Paragraph from heading";
break;
}
String partFileName = MessageFormat.format("{0} part {1}, of type {2}.{3}", mOutFileName, ++mCount, partType, FilenameUtils.getExtension(args.getDocumentPartFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output part file:
args.setDocumentPartFileName(partFileName);
// 2 - Create a custom stream for the output part file:
try (FileOutputStream outputStream = new FileOutputStream(getArtifactsDir() + partFileName)) {
args.setDocumentPartStream(outputStream);
}
Assert.assertNotNull(args.getDocumentPartStream());
Assert.assertFalse(args.getKeepDocumentPartStreamOpen());
}
private int mCount;
private final String mOutFileName;
private final int mDocumentSplitCriteria;
}
/// <summary>
/// Sets custom filenames for image files that an HTML conversion creates.
/// </summary>
public static class SavedImageRename implements IImageSavingCallback {
public SavedImageRename(String outFileName) {
mOutFileName = outFileName;
}
public void imageSaving(ImageSavingArgs args) throws Exception {
String imageFileName = MessageFormat.format("{0} shape {1}, of type {2}.{3}", mOutFileName, ++mCount, args.getCurrentShape().getShapeType(), FilenameUtils.getExtension(args.getImageFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output image file:
args.setImageFileName(imageFileName);
// 2 - Create a custom stream for the output image file:
args.setImageStream(new FileOutputStream(getArtifactsDir() + imageFileName));
Assert.assertNotNull(args.getImageStream());
Assert.assertTrue(args.isImageAvailable());
Assert.assertFalse(args.getKeepImageStreamOpen());
}
private int mCount;
private final String mOutFileName;
}
IDocumentPartSavingCallback value.public void setDocumentPartSavingCallback(IDocumentPartSavingCallback value)
Examples:
Shows how to split a document into parts and save them.
public void documentPartsFileNames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
String outFileName = "SavingCallback.DocumentPartsFileNames.html";
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// If we save the document normally, there will be one output HTML
// document with all the source document's contents.
// Set the "DocumentSplitCriteria" property to "DocumentSplitCriteria.SectionBreak" to
// save our document to multiple HTML files: one for each section.
options.setDocumentSplitCriteria(DocumentSplitCriteria.SECTION_BREAK);
// Assign a custom callback to the "DocumentPartSavingCallback" property to alter the document part saving logic.
options.setDocumentPartSavingCallback(new SavedDocumentPartRename(outFileName, options.getDocumentSplitCriteria()));
// If we convert a document that contains images into html, we will end up with one html file which links to several images.
// Each image will be in the form of a file in the local file system.
// There is also a callback that can customize the name and file system location of each image.
options.setImageSavingCallback(new SavedImageRename(outFileName));
doc.save(getArtifactsDir() + outFileName, options);
}
/// <summary>
/// Sets custom filenames for output documents that the saving operation splits a document into.
/// </summary>
private static class SavedDocumentPartRename implements IDocumentPartSavingCallback {
public SavedDocumentPartRename(String outFileName, int documentSplitCriteria) {
mOutFileName = outFileName;
mDocumentSplitCriteria = documentSplitCriteria;
}
public void documentPartSaving(DocumentPartSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
String partType = "";
switch (mDocumentSplitCriteria) {
case DocumentSplitCriteria.PAGE_BREAK:
partType = "Page";
break;
case DocumentSplitCriteria.COLUMN_BREAK:
partType = "Column";
break;
case DocumentSplitCriteria.SECTION_BREAK:
partType = "Section";
break;
case DocumentSplitCriteria.HEADING_PARAGRAPH:
partType = "Paragraph from heading";
break;
}
String partFileName = MessageFormat.format("{0} part {1}, of type {2}.{3}", mOutFileName, ++mCount, partType, FilenameUtils.getExtension(args.getDocumentPartFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output part file:
args.setDocumentPartFileName(partFileName);
// 2 - Create a custom stream for the output part file:
try (FileOutputStream outputStream = new FileOutputStream(getArtifactsDir() + partFileName)) {
args.setDocumentPartStream(outputStream);
}
Assert.assertNotNull(args.getDocumentPartStream());
Assert.assertFalse(args.getKeepDocumentPartStreamOpen());
}
private int mCount;
private final String mOutFileName;
private final int mDocumentSplitCriteria;
}
/// <summary>
/// Sets custom filenames for image files that an HTML conversion creates.
/// </summary>
public static class SavedImageRename implements IImageSavingCallback {
public SavedImageRename(String outFileName) {
mOutFileName = outFileName;
}
public void imageSaving(ImageSavingArgs args) throws Exception {
String imageFileName = MessageFormat.format("{0} shape {1}, of type {2}.{3}", mOutFileName, ++mCount, args.getCurrentShape().getShapeType(), FilenameUtils.getExtension(args.getImageFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output image file:
args.setImageFileName(imageFileName);
// 2 - Create a custom stream for the output image file:
args.setImageStream(new FileOutputStream(getArtifactsDir() + imageFileName));
Assert.assertNotNull(args.getImageStream());
Assert.assertTrue(args.isImageAvailable());
Assert.assertFalse(args.getKeepImageStreamOpen());
}
private int mCount;
private final String mOutFileName;
}
value - The corresponding IDocumentPartSavingCallback value.public ICssSavingCallback getCssSavingCallback()
Examples:
Shows how to work with CSS stylesheets that an HTML conversion creates.
public void externalCssFilenames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// Set the "CssStylesheetType" property to "CssStyleSheetType.External" to
// accompany a saved HTML document with an external CSS stylesheet file.
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
// Below are two ways of specifying directories and filenames for output CSS stylesheets.
// 1 - Use the "CssStyleSheetFileName" property to assign a filename to our stylesheet:
options.setCssStyleSheetFileName(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css");
// 2 - Use a custom callback to name our stylesheet:
options.setCssSavingCallback(new CustomCssSavingCallback(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css", true, false));
doc.save(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.html", options);
}
/// <summary>
/// Sets a custom filename, along with other parameters for an external CSS stylesheet.
/// </summary>
private static class CustomCssSavingCallback implements ICssSavingCallback {
public CustomCssSavingCallback(String cssDocFilename, boolean isExportNeeded, boolean keepCssStreamOpen) {
mCssTextFileName = cssDocFilename;
mIsExportNeeded = isExportNeeded;
mKeepCssStreamOpen = keepCssStreamOpen;
}
public void cssSaving(CssSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
args.setCssStream(new FileOutputStream(mCssTextFileName));
args.isExportNeeded(mIsExportNeeded);
args.setKeepCssStreamOpen(mKeepCssStreamOpen);
}
private final String mCssTextFileName;
private final boolean mIsExportNeeded;
private final boolean mKeepCssStreamOpen;
}
ICssSavingCallback value.public void setCssSavingCallback(ICssSavingCallback value)
Examples:
Shows how to work with CSS stylesheets that an HTML conversion creates.
public void externalCssFilenames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// Set the "CssStylesheetType" property to "CssStyleSheetType.External" to
// accompany a saved HTML document with an external CSS stylesheet file.
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
// Below are two ways of specifying directories and filenames for output CSS stylesheets.
// 1 - Use the "CssStyleSheetFileName" property to assign a filename to our stylesheet:
options.setCssStyleSheetFileName(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css");
// 2 - Use a custom callback to name our stylesheet:
options.setCssSavingCallback(new CustomCssSavingCallback(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.css", true, false));
doc.save(getArtifactsDir() + "SavingCallback.ExternalCssFilenames.html", options);
}
/// <summary>
/// Sets a custom filename, along with other parameters for an external CSS stylesheet.
/// </summary>
private static class CustomCssSavingCallback implements ICssSavingCallback {
public CustomCssSavingCallback(String cssDocFilename, boolean isExportNeeded, boolean keepCssStreamOpen) {
mCssTextFileName = cssDocFilename;
mIsExportNeeded = isExportNeeded;
mKeepCssStreamOpen = keepCssStreamOpen;
}
public void cssSaving(CssSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
args.setCssStream(new FileOutputStream(mCssTextFileName));
args.isExportNeeded(mIsExportNeeded);
args.setKeepCssStreamOpen(mKeepCssStreamOpen);
}
private final String mCssTextFileName;
private final boolean mIsExportNeeded;
private final boolean mKeepCssStreamOpen;
}
value - The corresponding ICssSavingCallback value.public int getDocumentSplitCriteria()
SaveFormat.HTML, SaveFormat.EPUB or SaveFormat.AZW_3 format. Default is DocumentSplitCriteria.NONE for HTML and DocumentSplitCriteria.HEADING_PARAGRAPH for EPUB and AZW3.
Remarks:
Normally you would want a document saved to HTML as a single file. But in some cases it is preferable to split the output into several smaller HTML pages. When saving to HTML format these pages will be output to individual files or streams. When saving to EPUB format they will be incorporated into corresponding packages.
A document cannot be split when saving in the MHTML format.
Examples:
Shows how to use a specific encoding when saving a document to .epub.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Use a SaveOptions object to specify the encoding for a document that we will save.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setSaveFormat(SaveFormat.EPUB);
saveOptions.setEncoding(StandardCharsets.UTF_8);
// By default, an output .epub document will have all of its contents in one HTML part.
// A split criterion allows us to segment the document into several HTML parts.
// We will set the criteria to split the document into heading paragraphs.
// This is useful for readers who cannot read HTML files more significant than a specific size.
saveOptions.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
// Specify that we want to export document properties.
saveOptions.setExportDocumentProperties(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.Doc2EpubSaveOptions.epub", saveOptions);
int value. The returned value is a bitwise combination of DocumentSplitCriteria constants.getDocumentSplitHeadingLevel(),
setDocumentSplitHeadingLevel(int),
getDocumentPartSavingCallback(),
setDocumentPartSavingCallback(com.aspose.words.IDocumentPartSavingCallback)public void setDocumentSplitCriteria(int value)
SaveFormat.HTML, SaveFormat.EPUB or SaveFormat.AZW_3 format. Default is DocumentSplitCriteria.NONE for HTML and DocumentSplitCriteria.HEADING_PARAGRAPH for EPUB and AZW3.
Remarks:
Normally you would want a document saved to HTML as a single file. But in some cases it is preferable to split the output into several smaller HTML pages. When saving to HTML format these pages will be output to individual files or streams. When saving to EPUB format they will be incorporated into corresponding packages.
A document cannot be split when saving in the MHTML format.
Examples:
Shows how to use a specific encoding when saving a document to .epub.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Use a SaveOptions object to specify the encoding for a document that we will save.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setSaveFormat(SaveFormat.EPUB);
saveOptions.setEncoding(StandardCharsets.UTF_8);
// By default, an output .epub document will have all of its contents in one HTML part.
// A split criterion allows us to segment the document into several HTML parts.
// We will set the criteria to split the document into heading paragraphs.
// This is useful for readers who cannot read HTML files more significant than a specific size.
saveOptions.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
// Specify that we want to export document properties.
saveOptions.setExportDocumentProperties(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.Doc2EpubSaveOptions.epub", saveOptions);
value - The corresponding int value. The value must be a bitwise combination of DocumentSplitCriteria constants.getDocumentSplitHeadingLevel(),
setDocumentSplitHeadingLevel(int),
getDocumentPartSavingCallback(),
setDocumentPartSavingCallback(com.aspose.words.IDocumentPartSavingCallback)public int getDocumentSplitHeadingLevel()
2.
Remarks:
When getDocumentSplitCriteria() / setDocumentSplitCriteria(int) includes DocumentSplitCriteria.HEADING_PARAGRAPH and this property is set to a value from 1 to 9, the document will be split at paragraphs formatted using Heading 1, Heading 2 , Heading 3 etc. styles up to the specified heading level.
By default, only Heading 1 and Heading 2 paragraphs cause the document to be split. Setting this property to zero will cause the document not to be split at heading paragraphs at all.
Examples:
Shows how to split an output HTML document by headings into several parts.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Every paragraph that we format using a "Heading" style can serve as a heading.
// Each heading may also have a heading level, determined by the number of its heading style.
// The headings below are of levels 1-3.
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.writeln("Heading #1");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 2"));
builder.writeln("Heading #2");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 3"));
builder.writeln("Heading #3");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.writeln("Heading #4");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 2"));
builder.writeln("Heading #5");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 3"));
builder.writeln("Heading #6");
// Create a HtmlSaveOptions object and set the split criteria to "HeadingParagraph".
// These criteria will split the document at paragraphs with "Heading" styles into several smaller documents,
// and save each document in a separate HTML file in the local file system.
// We will also set the maximum heading level, which splits the document to 2.
// Saving the document will split it at headings of levels 1 and 2, but not at 3 to 9.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
options.setDocumentSplitHeadingLevel(2);
}
// Our document has four headings of levels 1 - 2. One of those headings will not be
// a split point since it is at the beginning of the document.
// The saving operation will split our document at three places, into four smaller documents.
doc.save(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels.html", options);
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels.html");
Assert.assertEquals("Heading #1", doc.getText().trim());
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels-01.html");
Assert.assertEquals("Heading #2\r" +
"Heading #3", doc.getText().trim());
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels-02.html");
Assert.assertEquals("Heading #4", doc.getText().trim());
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels-03.html");
Assert.assertEquals("Heading #5\rHeading #6", doc.getText().trim());
int value.getDocumentSplitCriteria(),
setDocumentSplitCriteria(int),
getDocumentPartSavingCallback(),
setDocumentPartSavingCallback(com.aspose.words.IDocumentPartSavingCallback)public void setDocumentSplitHeadingLevel(int value)
2.
Remarks:
When getDocumentSplitCriteria() / setDocumentSplitCriteria(int) includes DocumentSplitCriteria.HEADING_PARAGRAPH and this property is set to a value from 1 to 9, the document will be split at paragraphs formatted using Heading 1, Heading 2 , Heading 3 etc. styles up to the specified heading level.
By default, only Heading 1 and Heading 2 paragraphs cause the document to be split. Setting this property to zero will cause the document not to be split at heading paragraphs at all.
Examples:
Shows how to split an output HTML document by headings into several parts.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Every paragraph that we format using a "Heading" style can serve as a heading.
// Each heading may also have a heading level, determined by the number of its heading style.
// The headings below are of levels 1-3.
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.writeln("Heading #1");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 2"));
builder.writeln("Heading #2");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 3"));
builder.writeln("Heading #3");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.writeln("Heading #4");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 2"));
builder.writeln("Heading #5");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 3"));
builder.writeln("Heading #6");
// Create a HtmlSaveOptions object and set the split criteria to "HeadingParagraph".
// These criteria will split the document at paragraphs with "Heading" styles into several smaller documents,
// and save each document in a separate HTML file in the local file system.
// We will also set the maximum heading level, which splits the document to 2.
// Saving the document will split it at headings of levels 1 and 2, but not at 3 to 9.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
options.setDocumentSplitHeadingLevel(2);
}
// Our document has four headings of levels 1 - 2. One of those headings will not be
// a split point since it is at the beginning of the document.
// The saving operation will split our document at three places, into four smaller documents.
doc.save(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels.html", options);
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels.html");
Assert.assertEquals("Heading #1", doc.getText().trim());
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels-01.html");
Assert.assertEquals("Heading #2\r" +
"Heading #3", doc.getText().trim());
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels-02.html");
Assert.assertEquals("Heading #4", doc.getText().trim());
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.HeadingLevels-03.html");
Assert.assertEquals("Heading #5\rHeading #6", doc.getText().trim());
value - The corresponding int value.getDocumentSplitCriteria(),
setDocumentSplitCriteria(int),
getDocumentPartSavingCallback(),
setDocumentPartSavingCallback(com.aspose.words.IDocumentPartSavingCallback)public java.nio.charset.Charset getEncoding()
public void setEncoding(java.nio.charset.Charset value)
public int getNavigationMapLevel()
3.
Remarks:
The navigation map allows user agents to provide an easy way of navigation through the document structure. Usually navigation points correspond to headings in the document. In order to populate headings up to level N assign this value to getNavigationMapLevel() / setNavigationMapLevel(int).
By default, three levels of headings are populated: paragraphs of styles Heading 1, Heading 2 and Heading 3. You can set this property to a value from 1 to 9 in order to request the corresponding maximum level. Setting it to zero will reduce the navigation map to only the document root or roots of document parts.
Examples:
Shows how to generate table of contents for Mobi documents.
Document doc = new Document(getMyDir() + "Big document.docx");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.MOBI);
options.setNavigationMapLevel(5);
doc.save(getArtifactsDir() + "HtmlSaveOptions.CreateMobiToc.mobi", options);
Shows how to generate table of contents for Azw3 documents.
Document doc = new Document(getMyDir() + "Big document.docx");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.AZW_3);
options.setNavigationMapLevel(2);
doc.save(getArtifactsDir() + "HtmlSaveOptions.CreateAZW3Toc.azw3", options);
Shows how to filter headings that appear in the navigation panel of a saved Epub document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Every paragraph that we format using a "Heading" style can serve as a heading.
// Each heading may also have a heading level, determined by the number of its heading style.
// The headings below are of levels 1-3.
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.writeln("Heading #1");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 2"));
builder.writeln("Heading #2");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 3"));
builder.writeln("Heading #3");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.writeln("Heading #4");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 2"));
builder.writeln("Heading #5");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 3"));
builder.writeln("Heading #6");
// Epub readers typically create a table of contents for their documents.
// Each paragraph with a "Heading" style in the document will create an entry in this table of contents.
// We can use the "NavigationMapLevel" property to set a maximum heading level.
// The Epub reader will not add headings with a level above the one we specify to the contents table.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.EPUB);
options.setNavigationMapLevel(2);
// Our document has six headings, two of which are above level 2.
// The table of contents for this document will have four entries.
doc.save(getArtifactsDir() + "HtmlSaveOptions.EpubHeadings.epub", options);
int value.public void setNavigationMapLevel(int value)
3.
Remarks:
The navigation map allows user agents to provide an easy way of navigation through the document structure. Usually navigation points correspond to headings in the document. In order to populate headings up to level N assign this value to getNavigationMapLevel() / setNavigationMapLevel(int).
By default, three levels of headings are populated: paragraphs of styles Heading 1, Heading 2 and Heading 3. You can set this property to a value from 1 to 9 in order to request the corresponding maximum level. Setting it to zero will reduce the navigation map to only the document root or roots of document parts.
Examples:
Shows how to generate table of contents for Mobi documents.
Document doc = new Document(getMyDir() + "Big document.docx");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.MOBI);
options.setNavigationMapLevel(5);
doc.save(getArtifactsDir() + "HtmlSaveOptions.CreateMobiToc.mobi", options);
Shows how to generate table of contents for Azw3 documents.
Document doc = new Document(getMyDir() + "Big document.docx");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.AZW_3);
options.setNavigationMapLevel(2);
doc.save(getArtifactsDir() + "HtmlSaveOptions.CreateAZW3Toc.azw3", options);
Shows how to filter headings that appear in the navigation panel of a saved Epub document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Every paragraph that we format using a "Heading" style can serve as a heading.
// Each heading may also have a heading level, determined by the number of its heading style.
// The headings below are of levels 1-3.
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.writeln("Heading #1");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 2"));
builder.writeln("Heading #2");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 3"));
builder.writeln("Heading #3");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.writeln("Heading #4");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 2"));
builder.writeln("Heading #5");
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 3"));
builder.writeln("Heading #6");
// Epub readers typically create a table of contents for their documents.
// Each paragraph with a "Heading" style in the document will create an entry in this table of contents.
// We can use the "NavigationMapLevel" property to set a maximum heading level.
// The Epub reader will not add headings with a level above the one we specify to the contents table.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.EPUB);
options.setNavigationMapLevel(2);
// Our document has six headings, two of which are above level 2.
// The table of contents for this document will have four entries.
doc.save(getArtifactsDir() + "HtmlSaveOptions.EpubHeadings.epub", options);
value - The corresponding int value.public boolean getExportDocumentProperties()
false.
Examples:
Shows how to use a specific encoding when saving a document to .epub.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Use a SaveOptions object to specify the encoding for a document that we will save.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setSaveFormat(SaveFormat.EPUB);
saveOptions.setEncoding(StandardCharsets.UTF_8);
// By default, an output .epub document will have all of its contents in one HTML part.
// A split criterion allows us to segment the document into several HTML parts.
// We will set the criteria to split the document into heading paragraphs.
// This is useful for readers who cannot read HTML files more significant than a specific size.
saveOptions.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
// Specify that we want to export document properties.
saveOptions.setExportDocumentProperties(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.Doc2EpubSaveOptions.epub", saveOptions);
boolean value.public void setExportDocumentProperties(boolean value)
false.
Examples:
Shows how to use a specific encoding when saving a document to .epub.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Use a SaveOptions object to specify the encoding for a document that we will save.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setSaveFormat(SaveFormat.EPUB);
saveOptions.setEncoding(StandardCharsets.UTF_8);
// By default, an output .epub document will have all of its contents in one HTML part.
// A split criterion allows us to segment the document into several HTML parts.
// We will set the criteria to split the document into heading paragraphs.
// This is useful for readers who cannot read HTML files more significant than a specific size.
saveOptions.setDocumentSplitCriteria(DocumentSplitCriteria.HEADING_PARAGRAPH);
// Specify that we want to export document properties.
saveOptions.setExportDocumentProperties(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.Doc2EpubSaveOptions.epub", saveOptions);
value - The corresponding boolean value.public boolean getExportFontResources()
false.
Remarks:
Exporting font resources allows for consistent document rendering independent of the fonts available in a given user's environment.
If getExportFontResources() / setExportFontResources(boolean) is set to true, main HTML document will refer to every font via the CSS 3 @font-face at-rule and fonts will be output as separate files. When exporting to IDPF EPUB or MHTML formats, fonts will be embedded into the corresponding package along with other subsidiary files.
If getExportFontsAsBase64() / setExportFontsAsBase64(boolean) is set to true, fonts will not be saved to separate files. Instead, they will be embedded into @font-face at-rules in Base64 encoding.
Important! When exporting font resources, font licensing issues should be considered. Authors who want to use specific fonts via a downloadable font mechanism must always carefully verify that their intended use is within the scope of the font license. Many commercial fonts presently do not allow web downloading of their fonts in any form. License agreements that cover some fonts specifically note that usage via @font-face rules in CSS style sheets is not allowed. Font subsetting can also violate license terms.
Examples:
Shows how to define custom logic for exporting fonts when saving to HTML.
public void saveExportedFonts() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Configure a SaveOptions object to export fonts to separate files.
// Set a callback that will handle font saving in a custom manner.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontResources(true);
options.setFontSavingCallback(new HandleFontSaving());
}
// The callback will export .ttf files and save them alongside the output document.
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveExportedFonts.html", options);
File[] fontFileNames = new File(getArtifactsDir()).listFiles((d, name) -> name.endsWith(".ttf"));
for (File fontFilename : fontFileNames) {
System.out.println(fontFilename.getName());
}
}
/// <summary>
/// Prints information about exported fonts and saves them in the same local system folder as their output .html.
/// </summary>
public static class HandleFontSaving implements IFontSavingCallback {
public void fontSaving(FontSavingArgs args) throws Exception {
System.out.println(MessageFormat.format("Font:\t{0}", args.getFontFamilyName()));
if (args.getBold()) System.out.print(", bold");
if (args.getItalic()) System.out.print(", italic");
System.out.println(MessageFormat.format("\nSource:\t{0}, {1} bytes\n", args.getOriginalFileName(), args.getOriginalFileSize()));
// We can also access the source document from here.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
Assert.assertTrue(args.isExportNeeded());
Assert.assertTrue(args.isSubsettingNeeded());
String[] splittedFileName = args.getOriginalFileName().split("\\\\");
String fileName = splittedFileName[splittedFileName.length - 1];
// There are two ways of saving an exported font.
// 1 - Save it to a local file system location:
args.setFontFileName(fileName);
// 2 - Save it to a stream:
args.setFontStream(new FileOutputStream(fileName));
Assert.assertFalse(args.getKeepFontStreamOpen());
}
}
boolean value.getFontResourcesSubsettingSizeThreshold(),
setFontResourcesSubsettingSizeThreshold(int)public void setExportFontResources(boolean value)
false.
Remarks:
Exporting font resources allows for consistent document rendering independent of the fonts available in a given user's environment.
If getExportFontResources() / setExportFontResources(boolean) is set to true, main HTML document will refer to every font via the CSS 3 @font-face at-rule and fonts will be output as separate files. When exporting to IDPF EPUB or MHTML formats, fonts will be embedded into the corresponding package along with other subsidiary files.
If getExportFontsAsBase64() / setExportFontsAsBase64(boolean) is set to true, fonts will not be saved to separate files. Instead, they will be embedded into @font-face at-rules in Base64 encoding.
Important! When exporting font resources, font licensing issues should be considered. Authors who want to use specific fonts via a downloadable font mechanism must always carefully verify that their intended use is within the scope of the font license. Many commercial fonts presently do not allow web downloading of their fonts in any form. License agreements that cover some fonts specifically note that usage via @font-face rules in CSS style sheets is not allowed. Font subsetting can also violate license terms.
Examples:
Shows how to define custom logic for exporting fonts when saving to HTML.
public void saveExportedFonts() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Configure a SaveOptions object to export fonts to separate files.
// Set a callback that will handle font saving in a custom manner.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontResources(true);
options.setFontSavingCallback(new HandleFontSaving());
}
// The callback will export .ttf files and save them alongside the output document.
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveExportedFonts.html", options);
File[] fontFileNames = new File(getArtifactsDir()).listFiles((d, name) -> name.endsWith(".ttf"));
for (File fontFilename : fontFileNames) {
System.out.println(fontFilename.getName());
}
}
/// <summary>
/// Prints information about exported fonts and saves them in the same local system folder as their output .html.
/// </summary>
public static class HandleFontSaving implements IFontSavingCallback {
public void fontSaving(FontSavingArgs args) throws Exception {
System.out.println(MessageFormat.format("Font:\t{0}", args.getFontFamilyName()));
if (args.getBold()) System.out.print(", bold");
if (args.getItalic()) System.out.print(", italic");
System.out.println(MessageFormat.format("\nSource:\t{0}, {1} bytes\n", args.getOriginalFileName(), args.getOriginalFileSize()));
// We can also access the source document from here.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
Assert.assertTrue(args.isExportNeeded());
Assert.assertTrue(args.isSubsettingNeeded());
String[] splittedFileName = args.getOriginalFileName().split("\\\\");
String fileName = splittedFileName[splittedFileName.length - 1];
// There are two ways of saving an exported font.
// 1 - Save it to a local file system location:
args.setFontFileName(fileName);
// 2 - Save it to a stream:
args.setFontStream(new FileOutputStream(fileName));
Assert.assertFalse(args.getKeepFontStreamOpen());
}
}
value - The corresponding boolean value.getFontResourcesSubsettingSizeThreshold(),
setFontResourcesSubsettingSizeThreshold(int)public boolean getExportFontsAsBase64()
false.
Remarks:
By default, fonts are written to separate files. If this option is set to true, fonts will be embedded into the document's CSS in Base64 encoding.
Examples:
Shows how to embed fonts inside a saved HTML document.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontsAsBase64(true);
options.setCssStyleSheetType(CssStyleSheetType.EMBEDDED);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportFontsAsBase64.html", options);
Shows how to save a .html document with images embedded inside it.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportImagesAsBase64(exportImagesAsBase64);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportImagesAsBase64.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportImagesAsBase64.html"), StandardCharsets.UTF_8);
Assert.assertTrue(exportImagesAsBase64
? outDocContents.contains("<img src=\"data:image/png;base64")
: outDocContents.contains("<img src=\"HtmlSaveOptions.ExportImagesAsBase64.001.png\""));
boolean value.public void setExportFontsAsBase64(boolean value)
false.
Remarks:
By default, fonts are written to separate files. If this option is set to true, fonts will be embedded into the document's CSS in Base64 encoding.
Examples:
Shows how to embed fonts inside a saved HTML document.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontsAsBase64(true);
options.setCssStyleSheetType(CssStyleSheetType.EMBEDDED);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportFontsAsBase64.html", options);
Shows how to save a .html document with images embedded inside it.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportImagesAsBase64(exportImagesAsBase64);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportImagesAsBase64.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportImagesAsBase64.html"), StandardCharsets.UTF_8);
Assert.assertTrue(exportImagesAsBase64
? outDocContents.contains("<img src=\"data:image/png;base64")
: outDocContents.contains("<img src=\"HtmlSaveOptions.ExportImagesAsBase64.001.png\""));
value - The corresponding boolean value.public int getExportHeadersFootersMode()
ExportHeadersFootersMode.PER_SECTION for HTML/MHTML and ExportHeadersFootersMode.NONE for EPUB.
Remarks:
It is hard to meaningfully output headers and footers to HTML because HTML is not paginated.
When this property is ExportHeadersFootersMode.PER_SECTION, Aspose.Words exports only primary headers and footers at the beginning and the end of each section.
When it is ExportHeadersFootersMode.FIRST_SECTION_HEADER_LAST_SECTION_FOOTER only first primary header and the last primary footer (including linked to previous) are exported.
You can disable export of headers and footers altogether by setting this property to ExportHeadersFootersMode.NONE.
Examples:
Shows how to omit headers/footers when saving a document to HTML.
Document doc = new Document(getMyDir() + "Header and footer types.docx");
// This document contains headers and footers. We can access them via the "HeadersFooters" collection.
Assert.assertEquals("First header", doc.getFirstSection().getHeadersFooters().getByHeaderFooterType(HeaderFooterType.HEADER_FIRST).getText().trim());
// Formats such as .html do not split the document into pages, so headers/footers will not function the same way
// they would when we open the document as a .docx using Microsoft Word.
// If we convert a document with headers/footers to html, the conversion will assimilate the headers/footers into body text.
// We can use a SaveOptions object to omit headers/footers while converting to html.
HtmlSaveOptions saveOptions =
new HtmlSaveOptions(SaveFormat.HTML);
{
saveOptions.setExportHeadersFootersMode(ExportHeadersFootersMode.NONE);
}
doc.save(getArtifactsDir() + "HeaderFooter.ExportMode.html", saveOptions);
// Open our saved document and verify that it does not contain the header's text.
doc = new Document(getArtifactsDir() + "HeaderFooter.ExportMode.html");
Assert.assertFalse(doc.getRange().getText().contains("First header"));
int value. The returned value is one of ExportHeadersFootersMode constants.public void setExportHeadersFootersMode(int value)
ExportHeadersFootersMode.PER_SECTION for HTML/MHTML and ExportHeadersFootersMode.NONE for EPUB.
Remarks:
It is hard to meaningfully output headers and footers to HTML because HTML is not paginated.
When this property is ExportHeadersFootersMode.PER_SECTION, Aspose.Words exports only primary headers and footers at the beginning and the end of each section.
When it is ExportHeadersFootersMode.FIRST_SECTION_HEADER_LAST_SECTION_FOOTER only first primary header and the last primary footer (including linked to previous) are exported.
You can disable export of headers and footers altogether by setting this property to ExportHeadersFootersMode.NONE.
Examples:
Shows how to omit headers/footers when saving a document to HTML.
Document doc = new Document(getMyDir() + "Header and footer types.docx");
// This document contains headers and footers. We can access them via the "HeadersFooters" collection.
Assert.assertEquals("First header", doc.getFirstSection().getHeadersFooters().getByHeaderFooterType(HeaderFooterType.HEADER_FIRST).getText().trim());
// Formats such as .html do not split the document into pages, so headers/footers will not function the same way
// they would when we open the document as a .docx using Microsoft Word.
// If we convert a document with headers/footers to html, the conversion will assimilate the headers/footers into body text.
// We can use a SaveOptions object to omit headers/footers while converting to html.
HtmlSaveOptions saveOptions =
new HtmlSaveOptions(SaveFormat.HTML);
{
saveOptions.setExportHeadersFootersMode(ExportHeadersFootersMode.NONE);
}
doc.save(getArtifactsDir() + "HeaderFooter.ExportMode.html", saveOptions);
// Open our saved document and verify that it does not contain the header's text.
doc = new Document(getArtifactsDir() + "HeaderFooter.ExportMode.html");
Assert.assertFalse(doc.getRange().getText().contains("First header"));
value - The corresponding int value. The value must be one of ExportHeadersFootersMode constants.public boolean getExportImagesAsBase64()
false.
Remarks:
When this property is set to true images data are exported directly into the img elements and separate files are not created.
Examples:
Shows how to embed fonts inside a saved HTML document.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontsAsBase64(true);
options.setCssStyleSheetType(CssStyleSheetType.EMBEDDED);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportFontsAsBase64.html", options);
Shows how to save a .html document with images embedded inside it.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportImagesAsBase64(exportImagesAsBase64);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportImagesAsBase64.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportImagesAsBase64.html"), StandardCharsets.UTF_8);
Assert.assertTrue(exportImagesAsBase64
? outDocContents.contains("<img src=\"data:image/png;base64")
: outDocContents.contains("<img src=\"HtmlSaveOptions.ExportImagesAsBase64.001.png\""));
boolean value.public void setExportImagesAsBase64(boolean value)
false.
Remarks:
When this property is set to true images data are exported directly into the img elements and separate files are not created.
Examples:
Shows how to embed fonts inside a saved HTML document.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontsAsBase64(true);
options.setCssStyleSheetType(CssStyleSheetType.EMBEDDED);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportFontsAsBase64.html", options);
Shows how to save a .html document with images embedded inside it.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportImagesAsBase64(exportImagesAsBase64);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportImagesAsBase64.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportImagesAsBase64.html"), StandardCharsets.UTF_8);
Assert.assertTrue(exportImagesAsBase64
? outDocContents.contains("<img src=\"data:image/png;base64")
: outDocContents.contains("<img src=\"HtmlSaveOptions.ExportImagesAsBase64.001.png\""));
value - The corresponding boolean value.public boolean getExportLanguageInformation()
false.
Remarks:
When this property is set to true Aspose.Words outputs lang HTML attribute on the document elements that specify language. This can be needed to preserve language related semantics.
Examples:
Shows how to preserve language information when saving to .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Use the builder to write text while formatting it in different locales.
builder.getFont().setLocaleId(1033);
builder.writeln("Hello world!");
builder.getFont().setLocaleId(2057);
builder.writeln("Hello again!");
builder.getFont().setLocaleId(1049);
builder.write("Привет, мир!");
// When saving the document to HTML, we can pass a SaveOptions object
// to either preserve or discard each formatted text's locale.
// If we set the "ExportLanguageInformation" flag to "true",
// the output HTML document will contain the locales in "lang" attributes of <span> tags.
// If we set the "ExportLanguageInformation" flag to "false',
// the text in the output HTML document will not contain any locale information.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportLanguageInformation(exportLanguageInformation);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportLanguageInformation.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportLanguageInformation.html"), StandardCharsets.UTF_8);
if (exportLanguageInformation) {
Assert.assertTrue(outDocContents.contains("<span>Hello world!</span>"));
Assert.assertTrue(outDocContents.contains("<span lang=\"en-GB\">Hello again!</span>"));
Assert.assertTrue(outDocContents.contains("<span lang=\"ru-RU\">Привет, мир!</span>"));
} else {
Assert.assertTrue(outDocContents.contains("<span>Hello world!</span>"));
Assert.assertTrue(outDocContents.contains("<span>Hello again!</span>"));
Assert.assertTrue(outDocContents.contains("<span>Привет, мир!</span>"));
}
boolean value.public void setExportLanguageInformation(boolean value)
false.
Remarks:
When this property is set to true Aspose.Words outputs lang HTML attribute on the document elements that specify language. This can be needed to preserve language related semantics.
Examples:
Shows how to preserve language information when saving to .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Use the builder to write text while formatting it in different locales.
builder.getFont().setLocaleId(1033);
builder.writeln("Hello world!");
builder.getFont().setLocaleId(2057);
builder.writeln("Hello again!");
builder.getFont().setLocaleId(1049);
builder.write("Привет, мир!");
// When saving the document to HTML, we can pass a SaveOptions object
// to either preserve or discard each formatted text's locale.
// If we set the "ExportLanguageInformation" flag to "true",
// the output HTML document will contain the locales in "lang" attributes of <span> tags.
// If we set the "ExportLanguageInformation" flag to "false',
// the text in the output HTML document will not contain any locale information.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportLanguageInformation(exportLanguageInformation);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportLanguageInformation.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportLanguageInformation.html"), StandardCharsets.UTF_8);
if (exportLanguageInformation) {
Assert.assertTrue(outDocContents.contains("<span>Hello world!</span>"));
Assert.assertTrue(outDocContents.contains("<span lang=\"en-GB\">Hello again!</span>"));
Assert.assertTrue(outDocContents.contains("<span lang=\"ru-RU\">Привет, мир!</span>"));
} else {
Assert.assertTrue(outDocContents.contains("<span>Hello world!</span>"));
Assert.assertTrue(outDocContents.contains("<span>Hello again!</span>"));
Assert.assertTrue(outDocContents.contains("<span>Привет, мир!</span>"));
}
value - The corresponding boolean value.public int getExportListLabels()
ExportListLabels.AUTO.
Examples:
Shows how to configure list exporting to HTML.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);
builder.getListFormat().setList(list);
builder.writeln("Default numbered list item 1.");
builder.writeln("Default numbered list item 2.");
builder.getListFormat().listIndent();
builder.writeln("Default numbered list item 3.");
builder.getListFormat().removeNumbers();
list = doc.getLists().add(ListTemplate.OUTLINE_HEADINGS_LEGAL);
builder.getListFormat().setList(list);
builder.writeln("Outline legal heading list item 1.");
builder.writeln("Outline legal heading list item 2.");
builder.getListFormat().listIndent();
builder.writeln("Outline legal heading list item 3.");
builder.getListFormat().listIndent();
builder.writeln("Outline legal heading list item 4.");
builder.getListFormat().listIndent();
builder.writeln("Outline legal heading list item 5.");
builder.getListFormat().removeNumbers();
// When saving the document to HTML, we can pass a SaveOptions object
// to decide which HTML elements the document will use to represent lists.
// Setting the "ExportListLabels" property to "ExportListLabels.AsInlineText"
// will create lists by formatting spans.
// Setting the "ExportListLabels" property to "ExportListLabels.Auto" will use the <p> tag
// to build lists in cases when using the <ol> and <li> tags may cause loss of formatting.
// Setting the "ExportListLabels" property to "ExportListLabels.ByHtmlTags"
// will use <ol> and <li> tags to build all lists.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportListLabels(exportListLabels);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.List.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.List.html"), StandardCharsets.UTF_8);
switch (exportListLabels) {
case ExportListLabels.AS_INLINE_TEXT:
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-left:72pt; margin-bottom:0pt; text-indent:-18pt; -aw-import:list-item; -aw-list-level-number:1; -aw-list-number-format:'%1.'; -aw-list-number-styles:'lowerLetter'; -aw-list-number-values:'1'; -aw-list-padding-sml:9.67pt\">" +
"<span style=\"-aw-import:ignore\">" +
"<span>a.</span>" +
"<span style=\"width:9.67pt; font:7pt 'Times New Roman'; display:inline-block; -aw-import:spaces\">       </span>" +
"</span>" +
"<span>Default numbered list item 3.</span>" +
"</p>"));
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-left:43.2pt; margin-bottom:0pt; text-indent:-43.2pt; -aw-import:list-item; -aw-list-level-number:3; -aw-list-number-format:'%0.%1.%2.%3'; -aw-list-number-styles:'decimal decimal decimal decimal'; -aw-list-number-values:'2 1 1 1'; -aw-list-padding-sml:10.2pt\">" +
"<span style=\"-aw-import:ignore\">" +
"<span>2.1.1.1</span>" +
"<span style=\"width:10.2pt; font:7pt 'Times New Roman'; display:inline-block; -aw-import:spaces\">       </span>" +
"</span>" +
"<span>Outline legal heading list item 5.</span>" +
"</p>"));
break;
case ExportListLabels.AUTO:
Assert.assertTrue(outDocContents.contains(
"<ol type=\"a\" style=\"margin-right:0pt; margin-left:0pt; padding-left:0pt\">" +
"<li style=\"margin-left:31.33pt; padding-left:4.67pt\">" +
"<span>Default numbered list item 3.</span>" +
"</li>" +
"</ol>"));
break;
case ExportListLabels.BY_HTML_TAGS:
Assert.assertTrue(outDocContents.contains(
"<ol type=\"a\" style=\"margin-right:0pt; margin-left:0pt; padding-left:0pt\">" +
"<li style=\"margin-left:31.33pt; padding-left:4.67pt\">" +
"<span>Default numbered list item 3.</span>" +
"</li>" +
"</ol>"));
break;
}
int value. The returned value is one of ExportListLabels constants.public void setExportListLabels(int value)
ExportListLabels.AUTO.
Examples:
Shows how to configure list exporting to HTML.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
List list = doc.getLists().add(ListTemplate.NUMBER_DEFAULT);
builder.getListFormat().setList(list);
builder.writeln("Default numbered list item 1.");
builder.writeln("Default numbered list item 2.");
builder.getListFormat().listIndent();
builder.writeln("Default numbered list item 3.");
builder.getListFormat().removeNumbers();
list = doc.getLists().add(ListTemplate.OUTLINE_HEADINGS_LEGAL);
builder.getListFormat().setList(list);
builder.writeln("Outline legal heading list item 1.");
builder.writeln("Outline legal heading list item 2.");
builder.getListFormat().listIndent();
builder.writeln("Outline legal heading list item 3.");
builder.getListFormat().listIndent();
builder.writeln("Outline legal heading list item 4.");
builder.getListFormat().listIndent();
builder.writeln("Outline legal heading list item 5.");
builder.getListFormat().removeNumbers();
// When saving the document to HTML, we can pass a SaveOptions object
// to decide which HTML elements the document will use to represent lists.
// Setting the "ExportListLabels" property to "ExportListLabels.AsInlineText"
// will create lists by formatting spans.
// Setting the "ExportListLabels" property to "ExportListLabels.Auto" will use the <p> tag
// to build lists in cases when using the <ol> and <li> tags may cause loss of formatting.
// Setting the "ExportListLabels" property to "ExportListLabels.ByHtmlTags"
// will use <ol> and <li> tags to build all lists.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportListLabels(exportListLabels);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.List.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.List.html"), StandardCharsets.UTF_8);
switch (exportListLabels) {
case ExportListLabels.AS_INLINE_TEXT:
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-left:72pt; margin-bottom:0pt; text-indent:-18pt; -aw-import:list-item; -aw-list-level-number:1; -aw-list-number-format:'%1.'; -aw-list-number-styles:'lowerLetter'; -aw-list-number-values:'1'; -aw-list-padding-sml:9.67pt\">" +
"<span style=\"-aw-import:ignore\">" +
"<span>a.</span>" +
"<span style=\"width:9.67pt; font:7pt 'Times New Roman'; display:inline-block; -aw-import:spaces\">       </span>" +
"</span>" +
"<span>Default numbered list item 3.</span>" +
"</p>"));
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-left:43.2pt; margin-bottom:0pt; text-indent:-43.2pt; -aw-import:list-item; -aw-list-level-number:3; -aw-list-number-format:'%0.%1.%2.%3'; -aw-list-number-styles:'decimal decimal decimal decimal'; -aw-list-number-values:'2 1 1 1'; -aw-list-padding-sml:10.2pt\">" +
"<span style=\"-aw-import:ignore\">" +
"<span>2.1.1.1</span>" +
"<span style=\"width:10.2pt; font:7pt 'Times New Roman'; display:inline-block; -aw-import:spaces\">       </span>" +
"</span>" +
"<span>Outline legal heading list item 5.</span>" +
"</p>"));
break;
case ExportListLabels.AUTO:
Assert.assertTrue(outDocContents.contains(
"<ol type=\"a\" style=\"margin-right:0pt; margin-left:0pt; padding-left:0pt\">" +
"<li style=\"margin-left:31.33pt; padding-left:4.67pt\">" +
"<span>Default numbered list item 3.</span>" +
"</li>" +
"</ol>"));
break;
case ExportListLabels.BY_HTML_TAGS:
Assert.assertTrue(outDocContents.contains(
"<ol type=\"a\" style=\"margin-right:0pt; margin-left:0pt; padding-left:0pt\">" +
"<li style=\"margin-left:31.33pt; padding-left:4.67pt\">" +
"<span>Default numbered list item 3.</span>" +
"</li>" +
"</ol>"));
break;
}
value - The corresponding int value. The value must be one of ExportListLabels constants.public int getMetafileFormat()
HtmlMetafileFormat.PNG, meaning that metafiles are rendered to raster PNG images.
Remarks:
Metafiles are not natively displayed by HTML browsers. By default, Aspose.Words converts WMF and EMF images into PNG files when exporting to HTML. Other options are to convert metafiles to SVG images or to export them as is without conversion.
Some image transforms, in particular image cropping, will not be applied to metafile images if they are exported to HTML without conversion.
Examples:
Shows how to convert SVG objects to a different format when saving HTML documents.
String html =
"<html>\n <svg xmlns='http://www.w3.org/2000/svg' width='500' height='40' viewBox='0 0 500 40'>\n <text x='0' y='35' font-family='Verdana' font-size='35'>Hello world!</text>\n </svg>\n </html>";
// Use 'ConvertSvgToEmf' to turn back the legacy behavior
// where all SVG images loaded from an HTML document were converted to EMF.
// Now SVG images are loaded without conversion
// if the MS Word version specified in load options supports SVG images natively.
HtmlLoadOptions loadOptions = new HtmlLoadOptions(); { loadOptions.setConvertSvgToEmf(true); }
Document doc = new Document(new ByteArrayInputStream(html.getBytes()));
// This document contains a <svg> element in the form of text.
// When we save the document to HTML, we can pass a SaveOptions object
// to determine how the saving operation handles this object.
// Setting the "MetafileFormat" property to "HtmlMetafileFormat.Png" to convert it to a PNG image.
// Setting the "MetafileFormat" property to "HtmlMetafileFormat.Svg" preserve it as a SVG object.
// Setting the "MetafileFormat" property to "HtmlMetafileFormat.EmfOrWmf" to convert it to a metafile.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setMetafileFormat(htmlMetafileFormat);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.MetafileFormat.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.MetafileFormat.html"), StandardCharsets.UTF_8);
switch (htmlMetafileFormat) {
case HtmlMetafileFormat.PNG:
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<img src=\"HtmlSaveOptions.MetafileFormat.001.png\" width=\"501\" height=\"41\" alt=\"\" " +
"style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />" +
"</p>"));
break;
case HtmlMetafileFormat.SVG:
Assert.assertTrue(outDocContents.contains(
"<span style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\">" +
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" width=\"499\" height=\"40\">"));
break;
case HtmlMetafileFormat.EMF_OR_WMF:
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<img src=\"HtmlSaveOptions.MetafileFormat.001.emf\" width=\"500\" height=\"40\" alt=\"\" " +
"style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />" +
"</p>"));
break;
}
int value. The returned value is one of HtmlMetafileFormat constants.getImageResolution(),
setImageResolution(int),
getScaleImageToShapeSize(),
setScaleImageToShapeSize(boolean)public void setMetafileFormat(int value)
HtmlMetafileFormat.PNG, meaning that metafiles are rendered to raster PNG images.
Remarks:
Metafiles are not natively displayed by HTML browsers. By default, Aspose.Words converts WMF and EMF images into PNG files when exporting to HTML. Other options are to convert metafiles to SVG images or to export them as is without conversion.
Some image transforms, in particular image cropping, will not be applied to metafile images if they are exported to HTML without conversion.
Examples:
Shows how to convert SVG objects to a different format when saving HTML documents.
String html =
"<html>\n <svg xmlns='http://www.w3.org/2000/svg' width='500' height='40' viewBox='0 0 500 40'>\n <text x='0' y='35' font-family='Verdana' font-size='35'>Hello world!</text>\n </svg>\n </html>";
// Use 'ConvertSvgToEmf' to turn back the legacy behavior
// where all SVG images loaded from an HTML document were converted to EMF.
// Now SVG images are loaded without conversion
// if the MS Word version specified in load options supports SVG images natively.
HtmlLoadOptions loadOptions = new HtmlLoadOptions(); { loadOptions.setConvertSvgToEmf(true); }
Document doc = new Document(new ByteArrayInputStream(html.getBytes()));
// This document contains a <svg> element in the form of text.
// When we save the document to HTML, we can pass a SaveOptions object
// to determine how the saving operation handles this object.
// Setting the "MetafileFormat" property to "HtmlMetafileFormat.Png" to convert it to a PNG image.
// Setting the "MetafileFormat" property to "HtmlMetafileFormat.Svg" preserve it as a SVG object.
// Setting the "MetafileFormat" property to "HtmlMetafileFormat.EmfOrWmf" to convert it to a metafile.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setMetafileFormat(htmlMetafileFormat);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.MetafileFormat.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.MetafileFormat.html"), StandardCharsets.UTF_8);
switch (htmlMetafileFormat) {
case HtmlMetafileFormat.PNG:
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<img src=\"HtmlSaveOptions.MetafileFormat.001.png\" width=\"501\" height=\"41\" alt=\"\" " +
"style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />" +
"</p>"));
break;
case HtmlMetafileFormat.SVG:
Assert.assertTrue(outDocContents.contains(
"<span style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\">" +
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" width=\"499\" height=\"40\">"));
break;
case HtmlMetafileFormat.EMF_OR_WMF:
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<img src=\"HtmlSaveOptions.MetafileFormat.001.emf\" width=\"500\" height=\"40\" alt=\"\" " +
"style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />" +
"</p>"));
break;
}
value - The corresponding int value. The value must be one of HtmlMetafileFormat constants.getImageResolution(),
setImageResolution(int),
getScaleImageToShapeSize(),
setScaleImageToShapeSize(boolean)public boolean getExportPageSetup()
false.
Remarks:
Each Section in Aspose.Words document model provides page setup information via PageSetup class. When you export a document to HTML format you might need to keep this information for further usage. In particular, page setup might be important for rendering to paged media (printing) or subsequent conversion to the native Microsoft Word file formats (DOCX, DOC, RTF, WML).
In most cases HTML is intended for viewing in browsers where pagination is not performed. So this feature is inactive by default.
Examples:
Shows how decide whether to preserve section structure/page setup information when saving to HTML.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.write("Section 1");
builder.insertBreak(BreakType.SECTION_BREAK_NEW_PAGE);
builder.write("Section 2");
PageSetup pageSetup = doc.getSections().get(0).getPageSetup();
pageSetup.setTopMargin(36.0);
pageSetup.setBottomMargin(36.0);
pageSetup.setPaperSize(PaperSize.A5);
// When saving the document to HTML, we can pass a SaveOptions object
// to decide whether to preserve or discard page setup settings.
// If we set the "ExportPageSetup" flag to "true", the output HTML document will contain our page setup configuration.
// If we set the "ExportPageSetup" flag to "false", the save operation will discard our page setup settings
// for the first section, and both sections will look identical.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportPageSetup(exportPageSetup);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportPageSetup.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportPageSetup.html"), StandardCharsets.UTF_8);
if (exportPageSetup) {
Assert.assertTrue(outDocContents.contains(
"<style type=\"text/css\">" +
"@page Section_1 { size:419.55pt 595.3pt; margin:36pt 72pt; -aw-footer-distance:36pt; -aw-header-distance:36pt }" +
"@page Section_2 { size:612pt 792pt; margin:72pt; -aw-footer-distance:36pt; -aw-header-distance:36pt }" +
"div.Section_1 { page:Section_1 }div.Section_2 { page:Section_2 }" +
"</style>"));
Assert.assertTrue(outDocContents.contains(
"<div class=\"Section_1\">" +
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Section 1</span>" +
"</p>" +
"</div>"));
} else {
Assert.assertFalse(outDocContents.contains("style type=\"text/css\">"));
Assert.assertTrue(outDocContents.contains(
"<div>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Section 1</span>" +
"</p>" +
"</div>"));
}
boolean value.public void setExportPageSetup(boolean value)
false.
Remarks:
Each Section in Aspose.Words document model provides page setup information via PageSetup class. When you export a document to HTML format you might need to keep this information for further usage. In particular, page setup might be important for rendering to paged media (printing) or subsequent conversion to the native Microsoft Word file formats (DOCX, DOC, RTF, WML).
In most cases HTML is intended for viewing in browsers where pagination is not performed. So this feature is inactive by default.
Examples:
Shows how decide whether to preserve section structure/page setup information when saving to HTML.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.write("Section 1");
builder.insertBreak(BreakType.SECTION_BREAK_NEW_PAGE);
builder.write("Section 2");
PageSetup pageSetup = doc.getSections().get(0).getPageSetup();
pageSetup.setTopMargin(36.0);
pageSetup.setBottomMargin(36.0);
pageSetup.setPaperSize(PaperSize.A5);
// When saving the document to HTML, we can pass a SaveOptions object
// to decide whether to preserve or discard page setup settings.
// If we set the "ExportPageSetup" flag to "true", the output HTML document will contain our page setup configuration.
// If we set the "ExportPageSetup" flag to "false", the save operation will discard our page setup settings
// for the first section, and both sections will look identical.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportPageSetup(exportPageSetup);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportPageSetup.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportPageSetup.html"), StandardCharsets.UTF_8);
if (exportPageSetup) {
Assert.assertTrue(outDocContents.contains(
"<style type=\"text/css\">" +
"@page Section_1 { size:419.55pt 595.3pt; margin:36pt 72pt; -aw-footer-distance:36pt; -aw-header-distance:36pt }" +
"@page Section_2 { size:612pt 792pt; margin:72pt; -aw-footer-distance:36pt; -aw-header-distance:36pt }" +
"div.Section_1 { page:Section_1 }div.Section_2 { page:Section_2 }" +
"</style>"));
Assert.assertTrue(outDocContents.contains(
"<div class=\"Section_1\">" +
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Section 1</span>" +
"</p>" +
"</div>"));
} else {
Assert.assertFalse(outDocContents.contains("style type=\"text/css\">"));
Assert.assertTrue(outDocContents.contains(
"<div>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Section 1</span>" +
"</p>" +
"</div>"));
}
value - The corresponding boolean value.public boolean getExportPageMargins()
false.
Remarks:
Aspose.Words does not show area of page margins by default. If any elements are completely or partially clipped by the document edge the displayed area can be extended with this option.
Examples:
Shows how to show out-of-bounds objects in output HTML documents.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Use a builder to insert a shape with no wrapping.
Shape shape = builder.insertShape(ShapeType.CUBE, 200.0, 200.0);
shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
shape.setWrapType(WrapType.NONE);
// Negative shape position values may place the shape outside of page boundaries.
// If we export this to HTML, the shape will appear truncated.
shape.setLeft(-150);
// When saving the document to HTML, we can pass a SaveOptions object
// to decide whether to adjust the page to display out-of-bounds objects fully.
// If we set the "ExportPageMargins" flag to "true", the shape will be fully visible in the output HTML.
// If we set the "ExportPageMargins" flag to "false",
// our document will display the shape truncated as we would see it in Microsoft Word.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportPageMargins(exportPageMargins);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportPageMargins.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportPageMargins.html"), StandardCharsets.UTF_8);
if (exportPageMargins)
{
Assert.assertTrue(outDocContents.contains("<style type=\"text/css\">div.Section_1 { margin:72pt }</style>"));
Assert.assertTrue(outDocContents.contains("<div class=\"Section_1\"><p style=\"margin-top:0pt; margin-left:150pt; margin-bottom:0pt\">"));
}
else
{
Assert.assertFalse(outDocContents.contains("style type=\"text/css\">"));
Assert.assertTrue(outDocContents.contains("<div><p style=\"margin-top:0pt; margin-left:222pt; margin-bottom:0pt\">"));
}
boolean value.public void setExportPageMargins(boolean value)
false.
Remarks:
Aspose.Words does not show area of page margins by default. If any elements are completely or partially clipped by the document edge the displayed area can be extended with this option.
Examples:
Shows how to show out-of-bounds objects in output HTML documents.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Use a builder to insert a shape with no wrapping.
Shape shape = builder.insertShape(ShapeType.CUBE, 200.0, 200.0);
shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
shape.setWrapType(WrapType.NONE);
// Negative shape position values may place the shape outside of page boundaries.
// If we export this to HTML, the shape will appear truncated.
shape.setLeft(-150);
// When saving the document to HTML, we can pass a SaveOptions object
// to decide whether to adjust the page to display out-of-bounds objects fully.
// If we set the "ExportPageMargins" flag to "true", the shape will be fully visible in the output HTML.
// If we set the "ExportPageMargins" flag to "false",
// our document will display the shape truncated as we would see it in Microsoft Word.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportPageMargins(exportPageMargins);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportPageMargins.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportPageMargins.html"), StandardCharsets.UTF_8);
if (exportPageMargins)
{
Assert.assertTrue(outDocContents.contains("<style type=\"text/css\">div.Section_1 { margin:72pt }</style>"));
Assert.assertTrue(outDocContents.contains("<div class=\"Section_1\"><p style=\"margin-top:0pt; margin-left:150pt; margin-bottom:0pt\">"));
}
else
{
Assert.assertFalse(outDocContents.contains("style type=\"text/css\">"));
Assert.assertTrue(outDocContents.contains("<div><p style=\"margin-top:0pt; margin-left:222pt; margin-bottom:0pt\">"));
}
value - The corresponding boolean value.public boolean getExportRelativeFontSize()
false.
Remarks:
In many existing documents (HTML, IDPF EPUB) font sizes are specified in relative units. This allows applications to adjust text size when viewing/processing documents. For instance, Microsoft Internet Explorer has "View->Text Size" submenu, Adobe Digital Editions has two buttons: Increase/Decrease Text Size. If you expect this functionality to work then set getExportRelativeFontSize() / setExportRelativeFontSize(boolean) property to true.
Aspose Words document model contains and operates only with absolute font size units. Relative units need additional logic to be recalculated from some initial (standard) size. Font size of Normal document style is taken as standard. For instance, if Normal has 12pt font and some text is 18pt then it will be output as 1.5em. to the HTML.
When this option is enabled, document elements other than text will still have absolute sizes. Also some text-related attributes might be expressed absolutely. In particular, line spacing specified with "exactly" rule might produce unwanted results when scaling text. So the source documents should be properly designed and tested when exporting with getExportRelativeFontSize() / setExportRelativeFontSize(boolean) set to true.
Examples:
Shows how to use relative font sizes when saving to .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Default font size, ");
builder.getFont().setSize(24.0);
builder.writeln("2x default font size,");
builder.getFont().setSize(96.0);
builder.write("8x default font size");
// When we save the document to HTML, we can pass a SaveOptions object
// to determine whether to use relative or absolute font sizes.
// Set the "ExportRelativeFontSize" flag to "true" to declare font sizes
// using the "em" measurement unit, which is a factor that multiplies the current font size.
// Set the "ExportRelativeFontSize" flag to "false" to declare font sizes
// using the "pt" measurement unit, which is the font's absolute size in points.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportRelativeFontSize(exportRelativeFontSize);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.RelativeFontSize.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.RelativeFontSize.html"), StandardCharsets.UTF_8);
if (exportRelativeFontSize) {
Assert.assertTrue(outDocContents.contains(
"<body style=\"font-family:'Times New Roman'\">" +
"<div>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Default font size, </span>" +
"</p>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt; font-size:2em\">" +
"<span>2x default font size,</span>" +
"</p>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt; font-size:8em\">" +
"<span>8x default font size</span>" +
"</p>" +
"</div>" +
"</body>"));
} else {
Assert.assertTrue(outDocContents.contains(
"<body style=\"font-family:'Times New Roman'; font-size:12pt\">" +
"<div>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Default font size, </span>" +
"</p>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt; font-size:24pt\">" +
"<span>2x default font size,</span>" +
"</p>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt; font-size:96pt\">" +
"<span>8x default font size</span>" +
"</p>" +
"</div>" +
"</body>"));
}
boolean value.public void setExportRelativeFontSize(boolean value)
false.
Remarks:
In many existing documents (HTML, IDPF EPUB) font sizes are specified in relative units. This allows applications to adjust text size when viewing/processing documents. For instance, Microsoft Internet Explorer has "View->Text Size" submenu, Adobe Digital Editions has two buttons: Increase/Decrease Text Size. If you expect this functionality to work then set getExportRelativeFontSize() / setExportRelativeFontSize(boolean) property to true.
Aspose Words document model contains and operates only with absolute font size units. Relative units need additional logic to be recalculated from some initial (standard) size. Font size of Normal document style is taken as standard. For instance, if Normal has 12pt font and some text is 18pt then it will be output as 1.5em. to the HTML.
When this option is enabled, document elements other than text will still have absolute sizes. Also some text-related attributes might be expressed absolutely. In particular, line spacing specified with "exactly" rule might produce unwanted results when scaling text. So the source documents should be properly designed and tested when exporting with getExportRelativeFontSize() / setExportRelativeFontSize(boolean) set to true.
Examples:
Shows how to use relative font sizes when saving to .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Default font size, ");
builder.getFont().setSize(24.0);
builder.writeln("2x default font size,");
builder.getFont().setSize(96.0);
builder.write("8x default font size");
// When we save the document to HTML, we can pass a SaveOptions object
// to determine whether to use relative or absolute font sizes.
// Set the "ExportRelativeFontSize" flag to "true" to declare font sizes
// using the "em" measurement unit, which is a factor that multiplies the current font size.
// Set the "ExportRelativeFontSize" flag to "false" to declare font sizes
// using the "pt" measurement unit, which is the font's absolute size in points.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportRelativeFontSize(exportRelativeFontSize);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.RelativeFontSize.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.RelativeFontSize.html"), StandardCharsets.UTF_8);
if (exportRelativeFontSize) {
Assert.assertTrue(outDocContents.contains(
"<body style=\"font-family:'Times New Roman'\">" +
"<div>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Default font size, </span>" +
"</p>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt; font-size:2em\">" +
"<span>2x default font size,</span>" +
"</p>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt; font-size:8em\">" +
"<span>8x default font size</span>" +
"</p>" +
"</div>" +
"</body>"));
} else {
Assert.assertTrue(outDocContents.contains(
"<body style=\"font-family:'Times New Roman'; font-size:12pt\">" +
"<div>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Default font size, </span>" +
"</p>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt; font-size:24pt\">" +
"<span>2x default font size,</span>" +
"</p>" +
"<p style=\"margin-top:0pt; margin-bottom:0pt; font-size:96pt\">" +
"<span>8x default font size</span>" +
"</p>" +
"</div>" +
"</body>"));
}
value - The corresponding boolean value.public boolean getExportTextInputFormFieldAsText()
false.
Remarks:
When set to true, exports text input form fields as normal text. When false, exports Word text input form fields as INPUT elements in HTML.
When exporting to EPUB, text input form fields are always saved as text due to requirements of this format.
Examples:
Shows how to specify the folder for storing linked images after saving to .html.
Document doc = new Document(getMyDir() + "Rendering.docx");
File imagesDir = new File(getArtifactsDir() + "SaveHtmlWithOptions");
if (imagesDir.exists())
imagesDir.delete();
imagesDir.mkdir();
// Set an option to export form fields as plain text instead of HTML input elements.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
options.setExportTextInputFormFieldAsText(true);
options.setImagesFolder(imagesDir.getPath());
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveHtmlWithOptions.html", options);
boolean value.public void setExportTextInputFormFieldAsText(boolean value)
false.
Remarks:
When set to true, exports text input form fields as normal text. When false, exports Word text input form fields as INPUT elements in HTML.
When exporting to EPUB, text input form fields are always saved as text due to requirements of this format.
Examples:
Shows how to specify the folder for storing linked images after saving to .html.
Document doc = new Document(getMyDir() + "Rendering.docx");
File imagesDir = new File(getArtifactsDir() + "SaveHtmlWithOptions");
if (imagesDir.exists())
imagesDir.delete();
imagesDir.mkdir();
// Set an option to export form fields as plain text instead of HTML input elements.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
options.setExportTextInputFormFieldAsText(true);
options.setImagesFolder(imagesDir.getPath());
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveHtmlWithOptions.html", options);
value - The corresponding boolean value.public boolean getExportShapesAsSvg()
Shape nodes are converted to SVG images when saving to HTML, MHTML, EPUB or AZW3. Default value is false.
Remarks:
If this option is set to true, Shape nodes are exported as
Examples:
Shows how to export shape as scalable vector graphics.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape textBox = builder.insertShape(ShapeType.TEXT_BOX, 100.0, 60.0);
builder.moveTo(textBox.getFirstParagraph());
builder.write("My text box");
// When we save the document to HTML, we can pass a SaveOptions object
// to determine how the saving operation will export text box shapes.
// If we set the "ExportTextBoxAsSvg" flag to "true",
// the save operation will convert shapes with text into SVG objects.
// If we set the "ExportTextBoxAsSvg" flag to "false",
// the save operation will convert shapes with text into images.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportShapesAsSvg(exportShapesAsSvg);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportTextBox.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportTextBox.html"), StandardCharsets.UTF_8);
if (exportShapesAsSvg) {
Assert.assertTrue(outDocContents.contains(
"<span style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\">" +
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" width=\"133\" height=\"80\">"));
} else {
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<img src=\"HtmlSaveOptions.ExportTextBox.001.png\" width=\"136\" height=\"83\" alt=\"\" " +
"style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />" +
"</p>"));
}
boolean value.public void setExportShapesAsSvg(boolean value)
Shape nodes are converted to SVG images when saving to HTML, MHTML, EPUB or AZW3. Default value is false.
Remarks:
If this option is set to true, Shape nodes are exported as
Examples:
Shows how to export shape as scalable vector graphics.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape textBox = builder.insertShape(ShapeType.TEXT_BOX, 100.0, 60.0);
builder.moveTo(textBox.getFirstParagraph());
builder.write("My text box");
// When we save the document to HTML, we can pass a SaveOptions object
// to determine how the saving operation will export text box shapes.
// If we set the "ExportTextBoxAsSvg" flag to "true",
// the save operation will convert shapes with text into SVG objects.
// If we set the "ExportTextBoxAsSvg" flag to "false",
// the save operation will convert shapes with text into images.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportShapesAsSvg(exportShapesAsSvg);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportTextBox.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportTextBox.html"), StandardCharsets.UTF_8);
if (exportShapesAsSvg) {
Assert.assertTrue(outDocContents.contains(
"<span style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\">" +
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" width=\"133\" height=\"80\">"));
} else {
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<img src=\"HtmlSaveOptions.ExportTextBox.001.png\" width=\"136\" height=\"83\" alt=\"\" " +
"style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />" +
"</p>"));
}
value - The corresponding boolean value.public boolean getExportDropDownFormFieldAsText()
false.
Remarks:
When set to true, exports drop-down form fields as normal text. When false, exports drop-down form fields as SELECT element in HTML.
When exporting to EPUB, text drop-down form fields are always saved as text due to requirements of this format.
Examples:
Shows how to get drop-down combo box form fields to blend in with paragraph text when saving to html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Use a document builder to insert a combo box with the value "Two" selected.
builder.insertComboBox("MyComboBox", new String[]{"One", "Two", "Three"}, 1);
// The "ExportDropDownFormFieldAsText" flag of this SaveOptions object allows us to
// control how saving the document to HTML treats drop-down combo boxes.
// Setting it to "true" will convert each combo box into simple text
// that displays the combo box's currently selected value, effectively freezing it.
// Setting it to "false" will preserve the functionality of the combo box using <select> and <option> tags.
HtmlSaveOptions options = new HtmlSaveOptions();
options.setExportDropDownFormFieldAsText(exportDropDownFormFieldAsText);
doc.save(getArtifactsDir() + "HtmlSaveOptions.DropDownFormField.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.DropDownFormField.html"), StandardCharsets.UTF_8);
if (exportDropDownFormFieldAsText)
Assert.assertTrue(outDocContents.contains(
"<span>Two</span>"));
else
Assert.assertTrue(outDocContents.contains(
"<select name=\"MyComboBox\">" +
"<option>One</option>" +
"<option selected=\"selected\">Two</option>" +
"<option>Three</option>" +
"</select>"));
boolean value.public void setExportDropDownFormFieldAsText(boolean value)
false.
Remarks:
When set to true, exports drop-down form fields as normal text. When false, exports drop-down form fields as SELECT element in HTML.
When exporting to EPUB, text drop-down form fields are always saved as text due to requirements of this format.
Examples:
Shows how to get drop-down combo box form fields to blend in with paragraph text when saving to html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Use a document builder to insert a combo box with the value "Two" selected.
builder.insertComboBox("MyComboBox", new String[]{"One", "Two", "Three"}, 1);
// The "ExportDropDownFormFieldAsText" flag of this SaveOptions object allows us to
// control how saving the document to HTML treats drop-down combo boxes.
// Setting it to "true" will convert each combo box into simple text
// that displays the combo box's currently selected value, effectively freezing it.
// Setting it to "false" will preserve the functionality of the combo box using <select> and <option> tags.
HtmlSaveOptions options = new HtmlSaveOptions();
options.setExportDropDownFormFieldAsText(exportDropDownFormFieldAsText);
doc.save(getArtifactsDir() + "HtmlSaveOptions.DropDownFormField.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.DropDownFormField.html"), StandardCharsets.UTF_8);
if (exportDropDownFormFieldAsText)
Assert.assertTrue(outDocContents.contains(
"<span>Two</span>"));
else
Assert.assertTrue(outDocContents.contains(
"<select name=\"MyComboBox\">" +
"<option>One</option>" +
"<option selected=\"selected\">Two</option>" +
"<option>Three</option>" +
"</select>"));
value - The corresponding boolean value.public boolean getExportTocPageNumbers()
false.
Examples:
Shows how to display page numbers when saving a document with a table of contents to .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a table of contents, and then populate the document with paragraphs formatted using a "Heading"
// style that the table of contents will pick up as entries. Each entry will display the heading paragraph on the left,
// and the page number that contains the heading on the right.
FieldToc fieldToc = (FieldToc) builder.insertField(FieldType.FIELD_TOC, true);
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.insertBreak(BreakType.PAGE_BREAK);
builder.writeln("Entry 1");
builder.writeln("Entry 2");
builder.insertBreak(BreakType.PAGE_BREAK);
builder.writeln("Entry 3");
builder.insertBreak(BreakType.PAGE_BREAK);
builder.writeln("Entry 4");
fieldToc.updatePageNumbers();
doc.updateFields();
// HTML documents do not have pages. If we save this document to HTML,
// the page numbers that our TOC displays will have no meaning.
// When we save the document to HTML, we can pass a SaveOptions object to omit these page numbers from the TOC.
// If we set the "ExportTocPageNumbers" flag to "true",
// each TOC entry will display the heading, separator, and page number, preserving its appearance in Microsoft Word.
// If we set the "ExportTocPageNumbers" flag to "false",
// the save operation will omit both the separator and page number and leave the heading for each entry intact.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportTocPageNumbers(exportTocPageNumbers);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportTocPageNumbers.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportTocPageNumbers.html"), StandardCharsets.UTF_8);
if (exportTocPageNumbers) {
Assert.assertTrue(outDocContents.contains(
"<span>Entry 1</span>" +
"<span style=\"width:425.84pt; font-family:'Lucida Console'; font-size:10pt; display:inline-block; -aw-font-family:'Times New Roman'; " +
"-aw-tabstop-align:right; -aw-tabstop-leader:dots; -aw-tabstop-pos:467.5pt\">......................................................................</span>" +
"<span>2</span>" +
"</p>"));
} else {
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Entry 2</span>" +
"</p>"));
}
boolean value.public void setExportTocPageNumbers(boolean value)
false.
Examples:
Shows how to display page numbers when saving a document with a table of contents to .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a table of contents, and then populate the document with paragraphs formatted using a "Heading"
// style that the table of contents will pick up as entries. Each entry will display the heading paragraph on the left,
// and the page number that contains the heading on the right.
FieldToc fieldToc = (FieldToc) builder.insertField(FieldType.FIELD_TOC, true);
builder.getParagraphFormat().setStyle(builder.getDocument().getStyles().get("Heading 1"));
builder.insertBreak(BreakType.PAGE_BREAK);
builder.writeln("Entry 1");
builder.writeln("Entry 2");
builder.insertBreak(BreakType.PAGE_BREAK);
builder.writeln("Entry 3");
builder.insertBreak(BreakType.PAGE_BREAK);
builder.writeln("Entry 4");
fieldToc.updatePageNumbers();
doc.updateFields();
// HTML documents do not have pages. If we save this document to HTML,
// the page numbers that our TOC displays will have no meaning.
// When we save the document to HTML, we can pass a SaveOptions object to omit these page numbers from the TOC.
// If we set the "ExportTocPageNumbers" flag to "true",
// each TOC entry will display the heading, separator, and page number, preserving its appearance in Microsoft Word.
// If we set the "ExportTocPageNumbers" flag to "false",
// the save operation will omit both the separator and page number and leave the heading for each entry intact.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportTocPageNumbers(exportTocPageNumbers);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportTocPageNumbers.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportTocPageNumbers.html"), StandardCharsets.UTF_8);
if (exportTocPageNumbers) {
Assert.assertTrue(outDocContents.contains(
"<span>Entry 1</span>" +
"<span style=\"width:425.84pt; font-family:'Lucida Console'; font-size:10pt; display:inline-block; -aw-font-family:'Times New Roman'; " +
"-aw-tabstop-align:right; -aw-tabstop-leader:dots; -aw-tabstop-pos:467.5pt\">......................................................................</span>" +
"<span>2</span>" +
"</p>"));
} else {
Assert.assertTrue(outDocContents.contains(
"<p style=\"margin-top:0pt; margin-bottom:0pt\">" +
"<span>Entry 2</span>" +
"</p>"));
}
value - The corresponding boolean value.public boolean getExportXhtmlTransitional()
true, writes a DOCTYPE declaration in the document prior to the root element. Default value is false. When saving to EPUB or HTML5 ( HtmlVersion.HTML_5) the DOCTYPE declaration is always written.
Remarks:
Aspose.Words always writes well formed HTML regardless of this setting.
When true, the beginning of the HTML output document will look like this:
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Aspose.Words aims to output XHTML according to the XHTML 1.0 Transitional specification, but the output will not always validate against the DTD. Some structures inside a Microsoft Word document are hard or impossible to map to a document that will validate against the XHTML schema. For example, XHTML does not allow nested lists (UL cannot be nested inside another UL element), but in Microsoft Word document multilevel lists occur quite often.
Examples:
Shows how to display a DOCTYPE heading when converting documents to the Xhtml 1.0 transitional standard.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setHtmlVersion(HtmlVersion.XHTML);
options.setExportXhtmlTransitional(showDoctypeDeclaration);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportXhtmlTransitional.html", options);
// Our document will only contain a DOCTYPE declaration heading if we have set the "ExportXhtmlTransitional" flag to "true".
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportXhtmlTransitional.html"), StandardCharsets.UTF_8);
if (showDoctypeDeclaration)
Assert.assertTrue(outDocContents.contains(
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n" +
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n" +
"<html xmlns=\"http://www.w3.org/1999/xhtml\">"));
else
Assert.assertTrue(outDocContents.contains("<html>"));
boolean value.public void setExportXhtmlTransitional(boolean value)
true, writes a DOCTYPE declaration in the document prior to the root element. Default value is false. When saving to EPUB or HTML5 ( HtmlVersion.HTML_5) the DOCTYPE declaration is always written.
Remarks:
Aspose.Words always writes well formed HTML regardless of this setting.
When true, the beginning of the HTML output document will look like this:
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Aspose.Words aims to output XHTML according to the XHTML 1.0 Transitional specification, but the output will not always validate against the DTD. Some structures inside a Microsoft Word document are hard or impossible to map to a document that will validate against the XHTML schema. For example, XHTML does not allow nested lists (UL cannot be nested inside another UL element), but in Microsoft Word document multilevel lists occur quite often.
Examples:
Shows how to display a DOCTYPE heading when converting documents to the Xhtml 1.0 transitional standard.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setHtmlVersion(HtmlVersion.XHTML);
options.setExportXhtmlTransitional(showDoctypeDeclaration);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportXhtmlTransitional.html", options);
// Our document will only contain a DOCTYPE declaration heading if we have set the "ExportXhtmlTransitional" flag to "true".
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportXhtmlTransitional.html"), StandardCharsets.UTF_8);
if (showDoctypeDeclaration)
Assert.assertTrue(outDocContents.contains(
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n" +
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n" +
"<html xmlns=\"http://www.w3.org/1999/xhtml\">"));
else
Assert.assertTrue(outDocContents.contains("<html>"));
value - The corresponding boolean value.public int getHtmlVersion()
HtmlVersion.XHTML.
Examples:
Shows how to display a DOCTYPE heading when converting documents to the Xhtml 1.0 transitional standard.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setHtmlVersion(HtmlVersion.XHTML);
options.setExportXhtmlTransitional(showDoctypeDeclaration);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportXhtmlTransitional.html", options);
// Our document will only contain a DOCTYPE declaration heading if we have set the "ExportXhtmlTransitional" flag to "true".
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportXhtmlTransitional.html"), StandardCharsets.UTF_8);
if (showDoctypeDeclaration)
Assert.assertTrue(outDocContents.contains(
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n" +
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n" +
"<html xmlns=\"http://www.w3.org/1999/xhtml\">"));
else
Assert.assertTrue(outDocContents.contains("<html>"));
Shows how to save a document to a specific version of HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setHtmlVersion(htmlVersion);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.HtmlVersions.html", options);
// Our HTML documents will have minor differences to be compatible with different HTML versions.
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.HtmlVersions.html"), StandardCharsets.UTF_8);
switch (htmlVersion) {
case HtmlVersion.HTML_5:
Assert.assertTrue(outDocContents.contains("<a id=\"_Toc76372689\"></a>"));
Assert.assertTrue(outDocContents.contains("<a id=\"_Toc76372689\"></a>"));
Assert.assertTrue(outDocContents.contains("<table style=\"padding:0pt; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
break;
case HtmlVersion.XHTML:
Assert.assertTrue(outDocContents.contains("<a name=\"_Toc76372689\"></a>"));
Assert.assertTrue(outDocContents.contains("<ul type=\"disc\" style=\"margin:0pt; padding-left:0pt\">"));
Assert.assertTrue(outDocContents.contains("<table cellspacing=\"0\" cellpadding=\"0\" style=\"-aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
break;
}
int value. The returned value is one of HtmlVersion constants.public void setHtmlVersion(int value)
HtmlVersion.XHTML.
Examples:
Shows how to display a DOCTYPE heading when converting documents to the Xhtml 1.0 transitional standard.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.writeln("Hello world!");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setHtmlVersion(HtmlVersion.XHTML);
options.setExportXhtmlTransitional(showDoctypeDeclaration);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ExportXhtmlTransitional.html", options);
// Our document will only contain a DOCTYPE declaration heading if we have set the "ExportXhtmlTransitional" flag to "true".
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ExportXhtmlTransitional.html"), StandardCharsets.UTF_8);
if (showDoctypeDeclaration)
Assert.assertTrue(outDocContents.contains(
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n" +
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n" +
"<html xmlns=\"http://www.w3.org/1999/xhtml\">"));
else
Assert.assertTrue(outDocContents.contains("<html>"));
Shows how to save a document to a specific version of HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setHtmlVersion(htmlVersion);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.HtmlVersions.html", options);
// Our HTML documents will have minor differences to be compatible with different HTML versions.
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.HtmlVersions.html"), StandardCharsets.UTF_8);
switch (htmlVersion) {
case HtmlVersion.HTML_5:
Assert.assertTrue(outDocContents.contains("<a id=\"_Toc76372689\"></a>"));
Assert.assertTrue(outDocContents.contains("<a id=\"_Toc76372689\"></a>"));
Assert.assertTrue(outDocContents.contains("<table style=\"padding:0pt; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
break;
case HtmlVersion.XHTML:
Assert.assertTrue(outDocContents.contains("<a name=\"_Toc76372689\"></a>"));
Assert.assertTrue(outDocContents.contains("<ul type=\"disc\" style=\"margin:0pt; padding-left:0pt\">"));
Assert.assertTrue(outDocContents.contains("<table cellspacing=\"0\" cellpadding=\"0\" style=\"-aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
break;
}
value - The corresponding int value. The value must be one of HtmlVersion constants.public boolean getExportRoundtripInformation()
true for HTML and false for MHTML and EPUB.
Remarks:
Saving of the roundtrip information allows to restore document properties such as tab stops, comments, headers and footers during the HTML documents loading back into a Document object.
When true, the roundtrip information is exported as -aw-* CSS properties of the corresponding HTML elements.
When false, causes no roundtrip information to be output into produced files.
Examples:
Shows how to preserve hidden elements when converting to .html.
Document doc = new Document(getMyDir() + "Rendering.docx");
// When converting a document to .html, some elements such as hidden bookmarks, original shape positions,
// or footnotes will be either removed or converted to plain text and effectively be lost.
// Saving with a HtmlSaveOptions object with ExportRoundtripInformation set to true will preserve these elements.
// When we save the document to HTML, we can pass a SaveOptions object to determine
// how the saving operation will export document elements that HTML does not support or use,
// such as hidden bookmarks and original shape positions.
// If we set the "ExportRoundtripInformation" flag to "true", the save operation will preserve these elements.
// If we set the "ExportRoundTripInformation" flag to "false", the save operation will discard these elements.
// We will want to preserve such elements if we intend to load the saved HTML using Aspose.Words,
// as they could be of use once again.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportRoundtripInformation(exportRoundtripInformation);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.RoundTripInformation.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.RoundTripInformation.html"), StandardCharsets.UTF_8);
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.RoundTripInformation.html");
if (exportRoundtripInformation) {
Assert.assertTrue(outDocContents.contains("<div style=\"-aw-headerfooter-type:header-primary; clear:both\">"));
Assert.assertTrue(outDocContents.contains("<span style=\"-aw-import:ignore\"> </span>"));
Assert.assertTrue(outDocContents.contains(
"td colspan=\"2\" style=\"width:210.6pt; border-style:solid; border-width:0.75pt 6pt 0.75pt 0.75pt; " +
"padding-right:2.4pt; padding-left:5.03pt; vertical-align:top; -aw-border-bottom:0.5pt single #000000; " +
"-aw-border-left:0.5pt single #000000; -aw-border-top:0.5pt single #000000\">"));
Assert.assertTrue(outDocContents.contains(
"<li style=\"margin-left:30.2pt; padding-left:5.8pt; -aw-font-family:'Courier New'; -aw-font-weight:normal; -aw-number-format:'o'\">"));
Assert.assertTrue(outDocContents.contains(
"<img src=\"HtmlSaveOptions.RoundTripInformation.003.jpeg\" width=\"350\" height=\"180\" alt=\"\" " +
"style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />"));
Assert.assertTrue(outDocContents.contains(
"<span>Page number </span>" +
"<span style=\"-aw-field-start:true\"></span>" +
"<span style=\"-aw-field-code:' PAGE \\\\* MERGEFORMAT '\"></span>" +
"<span style=\"-aw-field-separator:true\"></span>" +
"<span>1</span>" +
"<span style=\"-aw-field-end:true\"></span>"));
Assert.assertEquals(1, IterableUtils.countMatches(doc.getRange().getFields(), f -> f.getType() == FieldType.FIELD_PAGE));
} else {
Assert.assertTrue(outDocContents.contains("<div style=\"clear:both\">"));
Assert.assertTrue(outDocContents.contains("<span> </span>"));
Assert.assertTrue(outDocContents.contains(
"<td colspan=\"2\" style=\"width:210.6pt; border-style:solid; border-width:0.75pt 6pt 0.75pt 0.75pt; " +
"padding-right:2.4pt; padding-left:5.03pt; vertical-align:top\">"));
Assert.assertTrue(outDocContents.contains(
"<li style=\"margin-left:30.2pt; padding-left:5.8pt\">"));
Assert.assertTrue(outDocContents.contains(
"<img src=\"HtmlSaveOptions.RoundTripInformation.003.jpeg\" width=\"350\" height=\"180\" alt=\"\" />"));
Assert.assertTrue(outDocContents.contains(
"<span>Page number 1</span>"));
Assert.assertEquals(0, IterableUtils.countMatches(doc.getRange().getFields(), f -> f.getType() == FieldType.FIELD_PAGE));
}
boolean value.public void setExportRoundtripInformation(boolean value)
true for HTML and false for MHTML and EPUB.
Remarks:
Saving of the roundtrip information allows to restore document properties such as tab stops, comments, headers and footers during the HTML documents loading back into a Document object.
When true, the roundtrip information is exported as -aw-* CSS properties of the corresponding HTML elements.
When false, causes no roundtrip information to be output into produced files.
Examples:
Shows how to preserve hidden elements when converting to .html.
Document doc = new Document(getMyDir() + "Rendering.docx");
// When converting a document to .html, some elements such as hidden bookmarks, original shape positions,
// or footnotes will be either removed or converted to plain text and effectively be lost.
// Saving with a HtmlSaveOptions object with ExportRoundtripInformation set to true will preserve these elements.
// When we save the document to HTML, we can pass a SaveOptions object to determine
// how the saving operation will export document elements that HTML does not support or use,
// such as hidden bookmarks and original shape positions.
// If we set the "ExportRoundtripInformation" flag to "true", the save operation will preserve these elements.
// If we set the "ExportRoundTripInformation" flag to "false", the save operation will discard these elements.
// We will want to preserve such elements if we intend to load the saved HTML using Aspose.Words,
// as they could be of use once again.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportRoundtripInformation(exportRoundtripInformation);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.RoundTripInformation.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.RoundTripInformation.html"), StandardCharsets.UTF_8);
doc = new Document(getArtifactsDir() + "HtmlSaveOptions.RoundTripInformation.html");
if (exportRoundtripInformation) {
Assert.assertTrue(outDocContents.contains("<div style=\"-aw-headerfooter-type:header-primary; clear:both\">"));
Assert.assertTrue(outDocContents.contains("<span style=\"-aw-import:ignore\"> </span>"));
Assert.assertTrue(outDocContents.contains(
"td colspan=\"2\" style=\"width:210.6pt; border-style:solid; border-width:0.75pt 6pt 0.75pt 0.75pt; " +
"padding-right:2.4pt; padding-left:5.03pt; vertical-align:top; -aw-border-bottom:0.5pt single #000000; " +
"-aw-border-left:0.5pt single #000000; -aw-border-top:0.5pt single #000000\">"));
Assert.assertTrue(outDocContents.contains(
"<li style=\"margin-left:30.2pt; padding-left:5.8pt; -aw-font-family:'Courier New'; -aw-font-weight:normal; -aw-number-format:'o'\">"));
Assert.assertTrue(outDocContents.contains(
"<img src=\"HtmlSaveOptions.RoundTripInformation.003.jpeg\" width=\"350\" height=\"180\" alt=\"\" " +
"style=\"-aw-left-pos:0pt; -aw-rel-hpos:column; -aw-rel-vpos:paragraph; -aw-top-pos:0pt; -aw-wrap-type:inline\" />"));
Assert.assertTrue(outDocContents.contains(
"<span>Page number </span>" +
"<span style=\"-aw-field-start:true\"></span>" +
"<span style=\"-aw-field-code:' PAGE \\\\* MERGEFORMAT '\"></span>" +
"<span style=\"-aw-field-separator:true\"></span>" +
"<span>1</span>" +
"<span style=\"-aw-field-end:true\"></span>"));
Assert.assertEquals(1, IterableUtils.countMatches(doc.getRange().getFields(), f -> f.getType() == FieldType.FIELD_PAGE));
} else {
Assert.assertTrue(outDocContents.contains("<div style=\"clear:both\">"));
Assert.assertTrue(outDocContents.contains("<span> </span>"));
Assert.assertTrue(outDocContents.contains(
"<td colspan=\"2\" style=\"width:210.6pt; border-style:solid; border-width:0.75pt 6pt 0.75pt 0.75pt; " +
"padding-right:2.4pt; padding-left:5.03pt; vertical-align:top\">"));
Assert.assertTrue(outDocContents.contains(
"<li style=\"margin-left:30.2pt; padding-left:5.8pt\">"));
Assert.assertTrue(outDocContents.contains(
"<img src=\"HtmlSaveOptions.RoundTripInformation.003.jpeg\" width=\"350\" height=\"180\" alt=\"\" />"));
Assert.assertTrue(outDocContents.contains(
"<span>Page number 1</span>"));
Assert.assertEquals(0, IterableUtils.countMatches(doc.getRange().getFields(), f -> f.getType() == FieldType.FIELD_PAGE));
}
value - The corresponding boolean value.public java.lang.String getResourceFolder()
Remarks:
getResourceFolder() / setResourceFolder(java.lang.String) is the simplest way to specify a folder where all resources should be written. Another way is to use individual properties getFontsFolder() / setFontsFolder(java.lang.String), getImagesFolder() / setImagesFolder(java.lang.String), and getCssStyleSheetFileName() / setCssStyleSheetFileName(java.lang.String).
getResourceFolder() / setResourceFolder(java.lang.String) has a lower priority than folders specified via getFontsFolder() / setFontsFolder(java.lang.String), getImagesFolder() / setImagesFolder(java.lang.String), and getCssStyleSheetFileName() / setCssStyleSheetFileName(java.lang.String). For example, if both getResourceFolder() / setResourceFolder(java.lang.String) and getFontsFolder() / setFontsFolder(java.lang.String) are specified, fonts will be saved to getFontsFolder() / setFontsFolder(java.lang.String), while images and CSS will be saved to getResourceFolder() / setResourceFolder(java.lang.String).
If the folder specified by getResourceFolder() / setResourceFolder(java.lang.String) doesn't exist, it will be created automatically.
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
String value.getFontsFolder(),
setFontsFolder(java.lang.String),
getImagesFolder(),
setImagesFolder(java.lang.String),
getCssStyleSheetFileName(),
setCssStyleSheetFileName(java.lang.String)public void setResourceFolder(java.lang.String value)
Remarks:
getResourceFolder() / setResourceFolder(java.lang.String) is the simplest way to specify a folder where all resources should be written. Another way is to use individual properties getFontsFolder() / setFontsFolder(java.lang.String), getImagesFolder() / setImagesFolder(java.lang.String), and getCssStyleSheetFileName() / setCssStyleSheetFileName(java.lang.String).
getResourceFolder() / setResourceFolder(java.lang.String) has a lower priority than folders specified via getFontsFolder() / setFontsFolder(java.lang.String), getImagesFolder() / setImagesFolder(java.lang.String), and getCssStyleSheetFileName() / setCssStyleSheetFileName(java.lang.String). For example, if both getResourceFolder() / setResourceFolder(java.lang.String) and getFontsFolder() / setFontsFolder(java.lang.String) are specified, fonts will be saved to getFontsFolder() / setFontsFolder(java.lang.String), while images and CSS will be saved to getResourceFolder() / setResourceFolder(java.lang.String).
If the folder specified by getResourceFolder() / setResourceFolder(java.lang.String) doesn't exist, it will be created automatically.
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
value - The corresponding String value.getFontsFolder(),
setFontsFolder(java.lang.String),
getImagesFolder(),
setImagesFolder(java.lang.String),
getCssStyleSheetFileName(),
setCssStyleSheetFileName(java.lang.String)public java.lang.String getResourceFolderAlias()
Remarks:
getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) is the simplest way to specify how URIs for all resource files should be constructed. Same information can be specified for images and fonts separately via getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) and getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) properties, respectively. However, there is no individual property for CSS.
getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) has lower priority than getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) and getImagesFolderAlias() / setImagesFolderAlias(java.lang.String). For example, if both getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) and getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) are specified, fonts' URIs will be constructed using getFontsFolderAlias() / setFontsFolderAlias(java.lang.String), while URIs of images and CSS will be constructed using getResourceFolderAlias() / setResourceFolderAlias(java.lang.String).
If getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) is empty, the getResourceFolder() / setResourceFolder(java.lang.String) property value will be used to construct resource URIs.
If getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) is set to '.' (dot), resource URIs will contain file names only, without any path.
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
String value.getResourceFolder(),
setResourceFolder(java.lang.String),
getFontsFolderAlias(),
setFontsFolderAlias(java.lang.String),
getImagesFolderAlias(),
setImagesFolderAlias(java.lang.String)public void setResourceFolderAlias(java.lang.String value)
Remarks:
getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) is the simplest way to specify how URIs for all resource files should be constructed. Same information can be specified for images and fonts separately via getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) and getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) properties, respectively. However, there is no individual property for CSS.
getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) has lower priority than getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) and getImagesFolderAlias() / setImagesFolderAlias(java.lang.String). For example, if both getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) and getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) are specified, fonts' URIs will be constructed using getFontsFolderAlias() / setFontsFolderAlias(java.lang.String), while URIs of images and CSS will be constructed using getResourceFolderAlias() / setResourceFolderAlias(java.lang.String).
If getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) is empty, the getResourceFolder() / setResourceFolder(java.lang.String) property value will be used to construct resource URIs.
If getResourceFolderAlias() / setResourceFolderAlias(java.lang.String) is set to '.' (dot), resource URIs will contain file names only, without any path.
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
value - The corresponding String value.getResourceFolder(),
setResourceFolder(java.lang.String),
getFontsFolderAlias(),
setFontsFolderAlias(java.lang.String),
getImagesFolderAlias(),
setImagesFolderAlias(java.lang.String)public java.lang.String getFontsFolder()
Remarks:
When you save a Document in HTML format and getExportFontResources() / setExportFontResources(boolean) is set to true, Aspose.Words needs to save fonts used in the document as standalone files. getFontsFolder() / setFontsFolder(java.lang.String) allows you to specify where the fonts will be saved and getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) allows to specify how the font URIs will be constructed.
If you save a document into a file and provide a file name, Aspose.Words, by default, saves the fonts in the same folder where the document file is saved. Use getFontsFolder() / setFontsFolder(java.lang.String) to override this behavior.
If you save a document into a stream, Aspose.Words does not have a folder where to save the fonts, but still needs to save the fonts somewhere. In this case, you need to specify an accessible folder in the getFontsFolder() / setFontsFolder(java.lang.String) property or provide custom streams via the getFontSavingCallback() / setFontSavingCallback(com.aspose.words.IFontSavingCallback) event handler.
If the folder specified by getFontsFolder() / setFontsFolder(java.lang.String) doesn't exist, it will be created automatically.
getResourceFolder() / setResourceFolder(java.lang.String) is another way to specify a folder where fonts should be saved.
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
String value.getResourceFolder(),
setResourceFolder(java.lang.String),
getExportFontResources(),
setExportFontResources(boolean),
getFontsFolderAlias(),
setFontsFolderAlias(java.lang.String),
getFontSavingCallback(),
setFontSavingCallback(com.aspose.words.IFontSavingCallback)public void setFontsFolder(java.lang.String value)
Remarks:
When you save a Document in HTML format and getExportFontResources() / setExportFontResources(boolean) is set to true, Aspose.Words needs to save fonts used in the document as standalone files. getFontsFolder() / setFontsFolder(java.lang.String) allows you to specify where the fonts will be saved and getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) allows to specify how the font URIs will be constructed.
If you save a document into a file and provide a file name, Aspose.Words, by default, saves the fonts in the same folder where the document file is saved. Use getFontsFolder() / setFontsFolder(java.lang.String) to override this behavior.
If you save a document into a stream, Aspose.Words does not have a folder where to save the fonts, but still needs to save the fonts somewhere. In this case, you need to specify an accessible folder in the getFontsFolder() / setFontsFolder(java.lang.String) property or provide custom streams via the getFontSavingCallback() / setFontSavingCallback(com.aspose.words.IFontSavingCallback) event handler.
If the folder specified by getFontsFolder() / setFontsFolder(java.lang.String) doesn't exist, it will be created automatically.
getResourceFolder() / setResourceFolder(java.lang.String) is another way to specify a folder where fonts should be saved.
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
value - The corresponding String value.getResourceFolder(),
setResourceFolder(java.lang.String),
getExportFontResources(),
setExportFontResources(boolean),
getFontsFolderAlias(),
setFontsFolderAlias(java.lang.String),
getFontSavingCallback(),
setFontSavingCallback(com.aspose.words.IFontSavingCallback)public java.lang.String getFontsFolderAlias()
Remarks:
When you save a Document in HTML format and getExportFontResources() / setExportFontResources(boolean) is set to true, Aspose.Words needs to save fonts used in the document as standalone files. getFontsFolder() / setFontsFolder(java.lang.String) allows you to specify where the fonts will be saved and getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) allows to specify how the font URIs will be constructed.
If getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) is not an empty string, then the font URI written to HTML will be FontsFolderAlias + .
If getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) is an empty string, then the font URI written to HTML will be FontsFolder + .
If getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) is set to '.' (dot), then the font file name will be written to HTML without path regardless of other options.
Alternative way to specify the name of the folder to construct font URIs is to use getResourceFolderAlias() / setResourceFolderAlias(java.lang.String).
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
String value.getResourceFolderAlias(),
setResourceFolderAlias(java.lang.String),
getExportFontResources(),
setExportFontResources(boolean),
getFontsFolder(),
setFontsFolder(java.lang.String),
getFontSavingCallback(),
setFontSavingCallback(com.aspose.words.IFontSavingCallback)public void setFontsFolderAlias(java.lang.String value)
Remarks:
When you save a Document in HTML format and getExportFontResources() / setExportFontResources(boolean) is set to true, Aspose.Words needs to save fonts used in the document as standalone files. getFontsFolder() / setFontsFolder(java.lang.String) allows you to specify where the fonts will be saved and getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) allows to specify how the font URIs will be constructed.
If getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) is not an empty string, then the font URI written to HTML will be FontsFolderAlias + .
If getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) is an empty string, then the font URI written to HTML will be FontsFolder + .
If getFontsFolderAlias() / setFontsFolderAlias(java.lang.String) is set to '.' (dot), then the font file name will be written to HTML without path regardless of other options.
Alternative way to specify the name of the folder to construct font URIs is to use getResourceFolderAlias() / setResourceFolderAlias(java.lang.String).
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
value - The corresponding String value.getResourceFolderAlias(),
setResourceFolderAlias(java.lang.String),
getExportFontResources(),
setExportFontResources(boolean),
getFontsFolder(),
setFontsFolder(java.lang.String),
getFontSavingCallback(),
setFontSavingCallback(com.aspose.words.IFontSavingCallback)public int getFontResourcesSubsettingSizeThreshold()
0.
Remarks:
getExportFontResources() / setExportFontResources(boolean) allows exporting fonts as subsidiary files or as parts of the output package. If the document uses many fonts, especially with large number of glyphs, then output size can grow significantly. Font subsetting reduces the size of the exported font resource by filtering out glyphs that are not used by the current document.
Font subsetting works as follows:
getFontResourcesSubsettingSizeThreshold() / setFontResourcesSubsettingSizeThreshold(int) to a positive value instructs Aspose.Words to subset fonts which file size is larger than the specified value.
Important! When exporting font resources, font licensing issues should be considered. Authors who want to use specific fonts via a downloadable font mechanism must always carefully verify that their intended use is within the scope of the font license. Many commercial fonts presently do not allow web downloading of their fonts in any form. License agreements that cover some fonts specifically note that usage via @font-face rules in CSS style sheets is not allowed. Font subsetting can also violate license terms.
Examples:
Shows how to work with font subsetting.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Times New Roman");
builder.writeln("Hello world!");
builder.getFont().setName("Courier New");
builder.writeln("Hello world!");
// When we save the document to HTML, we can pass a SaveOptions object configure font subsetting.
// Suppose we set the "ExportFontResources" flag to "true" and also name a folder in the "FontsFolder" property.
// In that case, the saving operation will create that folder and place a .ttf file inside
// that folder for each font that our document uses.
// Each .ttf file will contain that font's entire glyph set,
// which may potentially result in a very large file that accompanies the document.
// When we apply subsetting to a font, its exported raw data will only contain the glyphs that the document is
// using instead of the entire glyph set. If the text in our document only uses a small fraction of a font's
// glyph set, then subsetting will significantly reduce our output documents' size.
// We can use the "FontResourcesSubsettingSizeThreshold" property to define a .ttf file size, in bytes.
// If an exported font creates a size bigger file than that, then the save operation will apply subsetting to that font.
// Setting a threshold of 0 applies subsetting to all fonts,
// and setting it to "int.MaxValue" effectively disables subsetting.
String fontsFolder = getArtifactsDir() + "HtmlSaveOptions.FontSubsetting.Fonts";
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontResources(true);
options.setFontsFolder(fontsFolder);
options.setFontResourcesSubsettingSizeThreshold(fontResourcesSubsettingSizeThreshold);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FontSubsetting.html", options);
File[] fontFileNames = new File(fontsFolder).listFiles((d, name) -> name.endsWith(".ttf"));
Assert.assertEquals(3, fontFileNames.length);
int value.getExportFontResources(),
setExportFontResources(boolean)public void setFontResourcesSubsettingSizeThreshold(int value)
0.
Remarks:
getExportFontResources() / setExportFontResources(boolean) allows exporting fonts as subsidiary files or as parts of the output package. If the document uses many fonts, especially with large number of glyphs, then output size can grow significantly. Font subsetting reduces the size of the exported font resource by filtering out glyphs that are not used by the current document.
Font subsetting works as follows:
getFontResourcesSubsettingSizeThreshold() / setFontResourcesSubsettingSizeThreshold(int) to a positive value instructs Aspose.Words to subset fonts which file size is larger than the specified value.
Important! When exporting font resources, font licensing issues should be considered. Authors who want to use specific fonts via a downloadable font mechanism must always carefully verify that their intended use is within the scope of the font license. Many commercial fonts presently do not allow web downloading of their fonts in any form. License agreements that cover some fonts specifically note that usage via @font-face rules in CSS style sheets is not allowed. Font subsetting can also violate license terms.
Examples:
Shows how to work with font subsetting.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getFont().setName("Arial");
builder.writeln("Hello world!");
builder.getFont().setName("Times New Roman");
builder.writeln("Hello world!");
builder.getFont().setName("Courier New");
builder.writeln("Hello world!");
// When we save the document to HTML, we can pass a SaveOptions object configure font subsetting.
// Suppose we set the "ExportFontResources" flag to "true" and also name a folder in the "FontsFolder" property.
// In that case, the saving operation will create that folder and place a .ttf file inside
// that folder for each font that our document uses.
// Each .ttf file will contain that font's entire glyph set,
// which may potentially result in a very large file that accompanies the document.
// When we apply subsetting to a font, its exported raw data will only contain the glyphs that the document is
// using instead of the entire glyph set. If the text in our document only uses a small fraction of a font's
// glyph set, then subsetting will significantly reduce our output documents' size.
// We can use the "FontResourcesSubsettingSizeThreshold" property to define a .ttf file size, in bytes.
// If an exported font creates a size bigger file than that, then the save operation will apply subsetting to that font.
// Setting a threshold of 0 applies subsetting to all fonts,
// and setting it to "int.MaxValue" effectively disables subsetting.
String fontsFolder = getArtifactsDir() + "HtmlSaveOptions.FontSubsetting.Fonts";
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontResources(true);
options.setFontsFolder(fontsFolder);
options.setFontResourcesSubsettingSizeThreshold(fontResourcesSubsettingSizeThreshold);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FontSubsetting.html", options);
File[] fontFileNames = new File(fontsFolder).listFiles((d, name) -> name.endsWith(".ttf"));
Assert.assertEquals(3, fontFileNames.length);
value - The corresponding int value.getExportFontResources(),
setExportFontResources(boolean)public IFontSavingCallback getFontSavingCallback()
Examples:
Shows how to define custom logic for exporting fonts when saving to HTML.
public void saveExportedFonts() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Configure a SaveOptions object to export fonts to separate files.
// Set a callback that will handle font saving in a custom manner.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontResources(true);
options.setFontSavingCallback(new HandleFontSaving());
}
// The callback will export .ttf files and save them alongside the output document.
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveExportedFonts.html", options);
File[] fontFileNames = new File(getArtifactsDir()).listFiles((d, name) -> name.endsWith(".ttf"));
for (File fontFilename : fontFileNames) {
System.out.println(fontFilename.getName());
}
}
/// <summary>
/// Prints information about exported fonts and saves them in the same local system folder as their output .html.
/// </summary>
public static class HandleFontSaving implements IFontSavingCallback {
public void fontSaving(FontSavingArgs args) throws Exception {
System.out.println(MessageFormat.format("Font:\t{0}", args.getFontFamilyName()));
if (args.getBold()) System.out.print(", bold");
if (args.getItalic()) System.out.print(", italic");
System.out.println(MessageFormat.format("\nSource:\t{0}, {1} bytes\n", args.getOriginalFileName(), args.getOriginalFileSize()));
// We can also access the source document from here.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
Assert.assertTrue(args.isExportNeeded());
Assert.assertTrue(args.isSubsettingNeeded());
String[] splittedFileName = args.getOriginalFileName().split("\\\\");
String fileName = splittedFileName[splittedFileName.length - 1];
// There are two ways of saving an exported font.
// 1 - Save it to a local file system location:
args.setFontFileName(fileName);
// 2 - Save it to a stream:
args.setFontStream(new FileOutputStream(fileName));
Assert.assertFalse(args.getKeepFontStreamOpen());
}
}
IFontSavingCallback value.public void setFontSavingCallback(IFontSavingCallback value)
Examples:
Shows how to define custom logic for exporting fonts when saving to HTML.
public void saveExportedFonts() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
// Configure a SaveOptions object to export fonts to separate files.
// Set a callback that will handle font saving in a custom manner.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setExportFontResources(true);
options.setFontSavingCallback(new HandleFontSaving());
}
// The callback will export .ttf files and save them alongside the output document.
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveExportedFonts.html", options);
File[] fontFileNames = new File(getArtifactsDir()).listFiles((d, name) -> name.endsWith(".ttf"));
for (File fontFilename : fontFileNames) {
System.out.println(fontFilename.getName());
}
}
/// <summary>
/// Prints information about exported fonts and saves them in the same local system folder as their output .html.
/// </summary>
public static class HandleFontSaving implements IFontSavingCallback {
public void fontSaving(FontSavingArgs args) throws Exception {
System.out.println(MessageFormat.format("Font:\t{0}", args.getFontFamilyName()));
if (args.getBold()) System.out.print(", bold");
if (args.getItalic()) System.out.print(", italic");
System.out.println(MessageFormat.format("\nSource:\t{0}, {1} bytes\n", args.getOriginalFileName(), args.getOriginalFileSize()));
// We can also access the source document from here.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
Assert.assertTrue(args.isExportNeeded());
Assert.assertTrue(args.isSubsettingNeeded());
String[] splittedFileName = args.getOriginalFileName().split("\\\\");
String fileName = splittedFileName[splittedFileName.length - 1];
// There are two ways of saving an exported font.
// 1 - Save it to a local file system location:
args.setFontFileName(fileName);
// 2 - Save it to a stream:
args.setFontStream(new FileOutputStream(fileName));
Assert.assertFalse(args.getKeepFontStreamOpen());
}
}
value - The corresponding IFontSavingCallback value.public java.lang.String getImagesFolder()
Remarks:
When you save a Document in HTML format, Aspose.Words needs to save all images embedded in the document as standalone files. getImagesFolder() / setImagesFolder(java.lang.String) allows you to specify where the images will be saved and getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) allows to specify how the image URIs will be constructed.
If you save a document into a file and provide a file name, Aspose.Words, by default, saves the images in the same folder where the document file is saved. Use getImagesFolder() / setImagesFolder(java.lang.String) to override this behavior.
If you save a document into a stream, Aspose.Words does not have a folder where to save the images, but still needs to save the images somewhere. In this case, you need to specify an accessible folder in the getImagesFolder() / setImagesFolder(java.lang.String) property or provide custom streams via the getImageSavingCallback() / setImageSavingCallback(com.aspose.words.IImageSavingCallback) event handler.
If the folder specified by getImagesFolder() / setImagesFolder(java.lang.String) doesn't exist, it will be created automatically.
getResourceFolder() / setResourceFolder(java.lang.String) is another way to specify a folder where images should be saved.
Examples:
Shows how to specify the folder for storing linked images after saving to .html.
Document doc = new Document(getMyDir() + "Rendering.docx");
File imagesDir = new File(getArtifactsDir() + "SaveHtmlWithOptions");
if (imagesDir.exists())
imagesDir.delete();
imagesDir.mkdir();
// Set an option to export form fields as plain text instead of HTML input elements.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
options.setExportTextInputFormFieldAsText(true);
options.setImagesFolder(imagesDir.getPath());
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveHtmlWithOptions.html", options);
String value.getResourceFolder(),
setResourceFolder(java.lang.String),
getImagesFolderAlias(),
setImagesFolderAlias(java.lang.String),
getImageSavingCallback(),
setImageSavingCallback(com.aspose.words.IImageSavingCallback)public void setImagesFolder(java.lang.String value)
Remarks:
When you save a Document in HTML format, Aspose.Words needs to save all images embedded in the document as standalone files. getImagesFolder() / setImagesFolder(java.lang.String) allows you to specify where the images will be saved and getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) allows to specify how the image URIs will be constructed.
If you save a document into a file and provide a file name, Aspose.Words, by default, saves the images in the same folder where the document file is saved. Use getImagesFolder() / setImagesFolder(java.lang.String) to override this behavior.
If you save a document into a stream, Aspose.Words does not have a folder where to save the images, but still needs to save the images somewhere. In this case, you need to specify an accessible folder in the getImagesFolder() / setImagesFolder(java.lang.String) property or provide custom streams via the getImageSavingCallback() / setImageSavingCallback(com.aspose.words.IImageSavingCallback) event handler.
If the folder specified by getImagesFolder() / setImagesFolder(java.lang.String) doesn't exist, it will be created automatically.
getResourceFolder() / setResourceFolder(java.lang.String) is another way to specify a folder where images should be saved.
Examples:
Shows how to specify the folder for storing linked images after saving to .html.
Document doc = new Document(getMyDir() + "Rendering.docx");
File imagesDir = new File(getArtifactsDir() + "SaveHtmlWithOptions");
if (imagesDir.exists())
imagesDir.delete();
imagesDir.mkdir();
// Set an option to export form fields as plain text instead of HTML input elements.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
options.setExportTextInputFormFieldAsText(true);
options.setImagesFolder(imagesDir.getPath());
doc.save(getArtifactsDir() + "HtmlSaveOptions.SaveHtmlWithOptions.html", options);
value - The corresponding String value.getResourceFolder(),
setResourceFolder(java.lang.String),
getImagesFolderAlias(),
setImagesFolderAlias(java.lang.String),
getImageSavingCallback(),
setImageSavingCallback(com.aspose.words.IImageSavingCallback)public java.lang.String getImagesFolderAlias()
Remarks:
When you save a Document in HTML format, Aspose.Words needs to save all images embedded in the document as standalone files. getImagesFolder() / setImagesFolder(java.lang.String) allows you to specify where the images will be saved and getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) allows to specify how the image URIs will be constructed.
If getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) is not an empty string, then the image URI written to HTML will be ImagesFolderAlias +
If getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) is an empty string, then the image URI written to HTML will be ImagesFolder +
If getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) is set to '.' (dot), then the image file name will be written to HTML without path regardless of other options.
Alternative way to specify the name of the folder to construct image URIs is to use getResourceFolderAlias() / setResourceFolderAlias(java.lang.String).
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
String value.getResourceFolderAlias(),
setResourceFolderAlias(java.lang.String),
getImagesFolder(),
setImagesFolder(java.lang.String),
getImageSavingCallback(),
setImageSavingCallback(com.aspose.words.IImageSavingCallback)public void setImagesFolderAlias(java.lang.String value)
Remarks:
When you save a Document in HTML format, Aspose.Words needs to save all images embedded in the document as standalone files. getImagesFolder() / setImagesFolder(java.lang.String) allows you to specify where the images will be saved and getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) allows to specify how the image URIs will be constructed.
If getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) is not an empty string, then the image URI written to HTML will be ImagesFolderAlias +
If getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) is an empty string, then the image URI written to HTML will be ImagesFolder +
If getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) is set to '.' (dot), then the image file name will be written to HTML without path regardless of other options.
Alternative way to specify the name of the folder to construct image URIs is to use getResourceFolderAlias() / setResourceFolderAlias(java.lang.String).
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
value - The corresponding String value.getResourceFolderAlias(),
setResourceFolderAlias(java.lang.String),
getImagesFolder(),
setImagesFolder(java.lang.String),
getImageSavingCallback(),
setImageSavingCallback(com.aspose.words.IImageSavingCallback)public int getImageResolution()
96 dpi.
Remarks:
This property effects raster images when getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is true and effects metafiles exported as raster images. Some image properties such as cropping or rotation require saving transformed images and in this case transformed images are created in the given resolution.
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
int value.getScaleImageToShapeSize(),
setScaleImageToShapeSize(boolean)public void setImageResolution(int value)
96 dpi.
Remarks:
This property effects raster images when getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is true and effects metafiles exported as raster images. Some image properties such as cropping or rotation require saving transformed images and in this case transformed images are created in the given resolution.
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
value - The corresponding int value.getScaleImageToShapeSize(),
setScaleImageToShapeSize(boolean)public IImageSavingCallback getImageSavingCallback()
Examples:
Shows how to split a document into parts and save them.
public void documentPartsFileNames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
String outFileName = "SavingCallback.DocumentPartsFileNames.html";
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// If we save the document normally, there will be one output HTML
// document with all the source document's contents.
// Set the "DocumentSplitCriteria" property to "DocumentSplitCriteria.SectionBreak" to
// save our document to multiple HTML files: one for each section.
options.setDocumentSplitCriteria(DocumentSplitCriteria.SECTION_BREAK);
// Assign a custom callback to the "DocumentPartSavingCallback" property to alter the document part saving logic.
options.setDocumentPartSavingCallback(new SavedDocumentPartRename(outFileName, options.getDocumentSplitCriteria()));
// If we convert a document that contains images into html, we will end up with one html file which links to several images.
// Each image will be in the form of a file in the local file system.
// There is also a callback that can customize the name and file system location of each image.
options.setImageSavingCallback(new SavedImageRename(outFileName));
doc.save(getArtifactsDir() + outFileName, options);
}
/// <summary>
/// Sets custom filenames for output documents that the saving operation splits a document into.
/// </summary>
private static class SavedDocumentPartRename implements IDocumentPartSavingCallback {
public SavedDocumentPartRename(String outFileName, int documentSplitCriteria) {
mOutFileName = outFileName;
mDocumentSplitCriteria = documentSplitCriteria;
}
public void documentPartSaving(DocumentPartSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
String partType = "";
switch (mDocumentSplitCriteria) {
case DocumentSplitCriteria.PAGE_BREAK:
partType = "Page";
break;
case DocumentSplitCriteria.COLUMN_BREAK:
partType = "Column";
break;
case DocumentSplitCriteria.SECTION_BREAK:
partType = "Section";
break;
case DocumentSplitCriteria.HEADING_PARAGRAPH:
partType = "Paragraph from heading";
break;
}
String partFileName = MessageFormat.format("{0} part {1}, of type {2}.{3}", mOutFileName, ++mCount, partType, FilenameUtils.getExtension(args.getDocumentPartFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output part file:
args.setDocumentPartFileName(partFileName);
// 2 - Create a custom stream for the output part file:
try (FileOutputStream outputStream = new FileOutputStream(getArtifactsDir() + partFileName)) {
args.setDocumentPartStream(outputStream);
}
Assert.assertNotNull(args.getDocumentPartStream());
Assert.assertFalse(args.getKeepDocumentPartStreamOpen());
}
private int mCount;
private final String mOutFileName;
private final int mDocumentSplitCriteria;
}
/// <summary>
/// Sets custom filenames for image files that an HTML conversion creates.
/// </summary>
public static class SavedImageRename implements IImageSavingCallback {
public SavedImageRename(String outFileName) {
mOutFileName = outFileName;
}
public void imageSaving(ImageSavingArgs args) throws Exception {
String imageFileName = MessageFormat.format("{0} shape {1}, of type {2}.{3}", mOutFileName, ++mCount, args.getCurrentShape().getShapeType(), FilenameUtils.getExtension(args.getImageFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output image file:
args.setImageFileName(imageFileName);
// 2 - Create a custom stream for the output image file:
args.setImageStream(new FileOutputStream(getArtifactsDir() + imageFileName));
Assert.assertNotNull(args.getImageStream());
Assert.assertTrue(args.isImageAvailable());
Assert.assertFalse(args.getKeepImageStreamOpen());
}
private int mCount;
private final String mOutFileName;
}
IImageSavingCallback value.public void setImageSavingCallback(IImageSavingCallback value)
Examples:
Shows how to split a document into parts and save them.
public void documentPartsFileNames() throws Exception {
Document doc = new Document(getMyDir() + "Rendering.docx");
String outFileName = "SavingCallback.DocumentPartsFileNames.html";
// Create an "HtmlFixedSaveOptions" object, which we can pass to the document's "Save" method
// to modify how we convert the document to HTML.
HtmlSaveOptions options = new HtmlSaveOptions();
// If we save the document normally, there will be one output HTML
// document with all the source document's contents.
// Set the "DocumentSplitCriteria" property to "DocumentSplitCriteria.SectionBreak" to
// save our document to multiple HTML files: one for each section.
options.setDocumentSplitCriteria(DocumentSplitCriteria.SECTION_BREAK);
// Assign a custom callback to the "DocumentPartSavingCallback" property to alter the document part saving logic.
options.setDocumentPartSavingCallback(new SavedDocumentPartRename(outFileName, options.getDocumentSplitCriteria()));
// If we convert a document that contains images into html, we will end up with one html file which links to several images.
// Each image will be in the form of a file in the local file system.
// There is also a callback that can customize the name and file system location of each image.
options.setImageSavingCallback(new SavedImageRename(outFileName));
doc.save(getArtifactsDir() + outFileName, options);
}
/// <summary>
/// Sets custom filenames for output documents that the saving operation splits a document into.
/// </summary>
private static class SavedDocumentPartRename implements IDocumentPartSavingCallback {
public SavedDocumentPartRename(String outFileName, int documentSplitCriteria) {
mOutFileName = outFileName;
mDocumentSplitCriteria = documentSplitCriteria;
}
public void documentPartSaving(DocumentPartSavingArgs args) throws Exception {
// We can access the entire source document via the "Document" property.
Assert.assertTrue(args.getDocument().getOriginalFileName().endsWith("Rendering.docx"));
String partType = "";
switch (mDocumentSplitCriteria) {
case DocumentSplitCriteria.PAGE_BREAK:
partType = "Page";
break;
case DocumentSplitCriteria.COLUMN_BREAK:
partType = "Column";
break;
case DocumentSplitCriteria.SECTION_BREAK:
partType = "Section";
break;
case DocumentSplitCriteria.HEADING_PARAGRAPH:
partType = "Paragraph from heading";
break;
}
String partFileName = MessageFormat.format("{0} part {1}, of type {2}.{3}", mOutFileName, ++mCount, partType, FilenameUtils.getExtension(args.getDocumentPartFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output part file:
args.setDocumentPartFileName(partFileName);
// 2 - Create a custom stream for the output part file:
try (FileOutputStream outputStream = new FileOutputStream(getArtifactsDir() + partFileName)) {
args.setDocumentPartStream(outputStream);
}
Assert.assertNotNull(args.getDocumentPartStream());
Assert.assertFalse(args.getKeepDocumentPartStreamOpen());
}
private int mCount;
private final String mOutFileName;
private final int mDocumentSplitCriteria;
}
/// <summary>
/// Sets custom filenames for image files that an HTML conversion creates.
/// </summary>
public static class SavedImageRename implements IImageSavingCallback {
public SavedImageRename(String outFileName) {
mOutFileName = outFileName;
}
public void imageSaving(ImageSavingArgs args) throws Exception {
String imageFileName = MessageFormat.format("{0} shape {1}, of type {2}.{3}", mOutFileName, ++mCount, args.getCurrentShape().getShapeType(), FilenameUtils.getExtension(args.getImageFileName()));
// Below are two ways of specifying where Aspose.Words will save each part of the document.
// 1 - Set a filename for the output image file:
args.setImageFileName(imageFileName);
// 2 - Create a custom stream for the output image file:
args.setImageStream(new FileOutputStream(getArtifactsDir() + imageFileName));
Assert.assertNotNull(args.getImageStream());
Assert.assertTrue(args.isImageAvailable());
Assert.assertFalse(args.getKeepImageStreamOpen());
}
private int mCount;
private final String mOutFileName;
}
value - The corresponding IImageSavingCallback value.public boolean getScaleImageToShapeSize()
true.
Remarks:
An image in a Microsoft Word document is a shape. The shape has a size and the image has its own size. The sizes are not directly linked. For example, the image can be 1024x786 pixels, but shape that displays this image can be 400x300 points.
In order to display an image in the browser, it must be scaled to the shape size. The getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) property controls where the scaling of the image takes place: in Aspose.Words during export to HTML or in the browser when displaying the document.
When getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is true, the image is scaled by Aspose.Words using high quality scaling during export to HTML. When getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is false, the image is output with its original size and the browser has to scale it.
In general, browsers do quick and poor quality scaling. As a result, you will normally get better display quality in the browser and smaller file size when getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is true, but better printing quality and faster conversion when getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is false.
In addition to shapes containing individual raster images, this option also affects group shapes consisting of raster images. If getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is false and a group shape contains raster images whose intrinsic resolution is higher than the value specified in getImageResolution() / setImageResolution(int), Aspose.Words will increase rendering resolution for that group. This allows to better preserve quality of grouped high resolution images when saving to HTML.
Examples:
Shows how to disable the scaling of images to their parent shape dimensions when saving to .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a shape which contains an image, and then make that shape considerably smaller than the image.
Shape imageShape = builder.insertImage(getImageDir() + "Transparent background logo.png");
imageShape.setWidth(50.0);
imageShape.setHeight(50.0);
// Saving a document that contains shapes with images to HTML will create an image file in the local file system
// for each such shape. The output HTML document will use <image> tags to link to and display these images.
// When we save the document to HTML, we can pass a SaveOptions object to determine
// whether to scale all images that are inside shapes to the sizes of their shapes.
// Setting the "ScaleImageToShapeSize" flag to "true" will shrink every image
// to the size of the shape that contains it, so that no saved images will be larger than the document requires them to be.
// Setting the "ScaleImageToShapeSize" flag to "false" will preserve these images' original sizes,
// which will take up more space in exchange for preserving image quality.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setScaleImageToShapeSize(scaleImageToShapeSize);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ScaleImageToShapeSize.html", options);
boolean value.getImageResolution(),
setImageResolution(int)public void setScaleImageToShapeSize(boolean value)
true.
Remarks:
An image in a Microsoft Word document is a shape. The shape has a size and the image has its own size. The sizes are not directly linked. For example, the image can be 1024x786 pixels, but shape that displays this image can be 400x300 points.
In order to display an image in the browser, it must be scaled to the shape size. The getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) property controls where the scaling of the image takes place: in Aspose.Words during export to HTML or in the browser when displaying the document.
When getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is true, the image is scaled by Aspose.Words using high quality scaling during export to HTML. When getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is false, the image is output with its original size and the browser has to scale it.
In general, browsers do quick and poor quality scaling. As a result, you will normally get better display quality in the browser and smaller file size when getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is true, but better printing quality and faster conversion when getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is false.
In addition to shapes containing individual raster images, this option also affects group shapes consisting of raster images. If getScaleImageToShapeSize() / setScaleImageToShapeSize(boolean) is false and a group shape contains raster images whose intrinsic resolution is higher than the value specified in getImageResolution() / setImageResolution(int), Aspose.Words will increase rendering resolution for that group. This allows to better preserve quality of grouped high resolution images when saving to HTML.
Examples:
Shows how to disable the scaling of images to their parent shape dimensions when saving to .html.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a shape which contains an image, and then make that shape considerably smaller than the image.
Shape imageShape = builder.insertImage(getImageDir() + "Transparent background logo.png");
imageShape.setWidth(50.0);
imageShape.setHeight(50.0);
// Saving a document that contains shapes with images to HTML will create an image file in the local file system
// for each such shape. The output HTML document will use <image> tags to link to and display these images.
// When we save the document to HTML, we can pass a SaveOptions object to determine
// whether to scale all images that are inside shapes to the sizes of their shapes.
// Setting the "ScaleImageToShapeSize" flag to "true" will shrink every image
// to the size of the shape that contains it, so that no saved images will be larger than the document requires them to be.
// Setting the "ScaleImageToShapeSize" flag to "false" will preserve these images' original sizes,
// which will take up more space in exchange for preserving image quality.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setScaleImageToShapeSize(scaleImageToShapeSize);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ScaleImageToShapeSize.html", options);
value - The corresponding boolean value.getImageResolution(),
setImageResolution(int)public int getTableWidthOutputMode()
HtmlElementSizeOutputMode.ALL.
Remarks:
In the HTML format, table, row and cell elements (
When you convert a document to HTML using Aspose.Words, you might want to control how table, row and cell widths are exported to affect how the resulting document is displayed in the visual agent (e.g. a browser or viewer).
Use this property as a filter to specify what table widths values are exported into the destination document. For example, if you are converting a document to EPUB and intend to view the document on a mobile reading device, then you probably want to avoid exporting absolute width values. To do this you need to specify the output mode
Examples:
Shows how to preserve negative indents in the output .html.
Remarks:
In the HTML format, table, row and cell elements (
When you convert a document to HTML using Aspose.Words, you might want to control how table, row and cell widths are exported to affect how the resulting document is displayed in the visual agent (e.g. a browser or viewer).
Use this property as a filter to specify what table widths values are exported into the destination document. For example, if you are converting a document to EPUB and intend to view the document on a mobile reading device, then you probably want to avoid exporting absolute width values. To do this you need to specify the output mode
Examples:
Shows how to preserve negative indents in the output .html.
Examples:
Shows how to specify how to export Microsoft OfficeMath objects to HTML.
Examples:
Shows how to specify how to export Microsoft OfficeMath objects to HTML.
Remarks:
If value is set to
If value is set to
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Remarks:
If value is set to
If value is set to
Examples:
Shows how to set folders and folder aliases for externally saved resources that Aspose.Words will create when saving a document to HTML.
Remarks:
This option affects only documents being saved to MHTML.
By default, resources in MHTML documents are referenced by file name (for example, "image.png"), which are matched against "Content-Location" headers of MIME parts.
This option enables an alternative method, where references to resource files are written as CID (Content-ID) URLs (for example, "cid:image.png") and are matched against "Content-ID" headers.
In theory, there should be no difference between the two referencing methods and either of them should work fine in any browser or mail agent. In practice, however, some agents fail to fetch resources by file name. If your browser or mail agent refuses to load resources included in an MTHML document (doesn't show images or doesn't load CSS styles), try exporting the document with CID URLs.
Examples:
Shows how to enable content IDs for output MHTML documents.
Remarks:
This option affects only documents being saved to MHTML.
By default, resources in MHTML documents are referenced by file name (for example, "image.png"), which are matched against "Content-Location" headers of MIME parts.
This option enables an alternative method, where references to resource files are written as CID (Content-ID) URLs (for example, "cid:image.png") and are matched against "Content-ID" headers.
In theory, there should be no difference between the two referencing methods and either of them should work fine in any browser or mail agent. In practice, however, some agents fail to fetch resources by file name. If your browser or mail agent refuses to load resources included in an MTHML document (doesn't show images or doesn't load CSS styles), try exporting the document with CID URLs.
Examples:
Shows how to enable content IDs for output MHTML documents.
Remarks:
By default, this option is set to
If this option is set to
Examples:
Shows how to resolve all font names before writing them to HTML.
Remarks:
By default, this option is set to
If this option is set to
Examples:
Shows how to resolve all font names before writing them to HTML.
Remarks:
By default, Aspose.Words mimics MS Word's behavior and doesn't replace backslash characters with yen signs in generated HTML documents. However, previous versions of Aspose.Words performed such replacements in certain scenarios. This flag enables backward compatibility with previous versions of Aspose.Words.
Examples:
Shows how to replace backslash characters with yen signs (Html).
Remarks:
By default, Aspose.Words mimics MS Word's behavior and doesn't replace backslash characters with yen signs in generated HTML documents. However, previous versions of Aspose.Words performed such replacements in certain scenarios. This flag enables backward compatibility with previous versions of Aspose.Words.
Examples:
Shows how to replace backslash characters with yen signs (Html).
Remarks:
If this option is enabled, all links containing JavaScript (e.g., links with "javascript:" in the href attribute) will be replaced with "javascript:void(0)". This can help prevent potential security risks, such as XSS attacks.
Remarks:
If this option is enabled, all links containing JavaScript (e.g., links with "javascript:" in the href attribute) will be replaced with "javascript:void(0)". This can help prevent potential security risks, such as XSS attacks.
,
, , ) can have their widths specified either in relative (percentage) or in absolute units. In a document in Aspose.Words, tables, rows and cells can have their widths specified using either relative or absolute units too.
HtmlElementSizeOutputMode.RELATIVE_ONLY or HtmlElementSizeOutputMode.NONE so the viewer on the mobile device can layout the table to fit the width of the screen as best as it can.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a table with a negative indent, which will push it to the left past the left page boundary.
Table table = builder.startTable();
builder.insertCell();
builder.write("Row 1, Cell 1");
builder.insertCell();
builder.write("Row 1, Cell 2");
builder.endTable();
table.setLeftIndent(-36);
table.setPreferredWidth(PreferredWidth.fromPoints(144.0));
builder.insertBreak(BreakType.PARAGRAPH_BREAK);
// Insert a table with a positive indent, which will push the table to the right.
table = builder.startTable();
builder.insertCell();
builder.write("Row 1, Cell 1");
builder.insertCell();
builder.write("Row 1, Cell 2");
builder.endTable();
table.setLeftIndent(36.0);
table.setPreferredWidth(PreferredWidth.fromPoints(144.0));
// When we save a document to HTML, Aspose.Words will only preserve negative indents
// such as the one we have applied to the first table if we set the "AllowNegativeIndent" flag
// in a SaveOptions object that we will pass to "true".
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setAllowNegativeIndent(allowNegativeIndent);
options.setTableWidthOutputMode(HtmlElementSizeOutputMode.RELATIVE_ONLY);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.NegativeIndent.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.NegativeIndent.html"), StandardCharsets.UTF_8);
if (allowNegativeIndent) {
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:-41.65pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:30.35pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
}
else
{
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:30.35pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
}
int value. The returned value is one of HtmlElementSizeOutputMode constants.
setTableWidthOutputMode
public void setTableWidthOutputMode(int value)
HtmlElementSizeOutputMode.ALL.
,
, , ) can have their widths specified either in relative (percentage) or in absolute units. In a document in Aspose.Words, tables, rows and cells can have their widths specified using either relative or absolute units too.
HtmlElementSizeOutputMode.RELATIVE_ONLY or HtmlElementSizeOutputMode.NONE so the viewer on the mobile device can layout the table to fit the width of the screen as best as it can.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert a table with a negative indent, which will push it to the left past the left page boundary.
Table table = builder.startTable();
builder.insertCell();
builder.write("Row 1, Cell 1");
builder.insertCell();
builder.write("Row 1, Cell 2");
builder.endTable();
table.setLeftIndent(-36);
table.setPreferredWidth(PreferredWidth.fromPoints(144.0));
builder.insertBreak(BreakType.PARAGRAPH_BREAK);
// Insert a table with a positive indent, which will push the table to the right.
table = builder.startTable();
builder.insertCell();
builder.write("Row 1, Cell 1");
builder.insertCell();
builder.write("Row 1, Cell 2");
builder.endTable();
table.setLeftIndent(36.0);
table.setPreferredWidth(PreferredWidth.fromPoints(144.0));
// When we save a document to HTML, Aspose.Words will only preserve negative indents
// such as the one we have applied to the first table if we set the "AllowNegativeIndent" flag
// in a SaveOptions object that we will pass to "true".
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.HTML);
{
options.setAllowNegativeIndent(allowNegativeIndent);
options.setTableWidthOutputMode(HtmlElementSizeOutputMode.RELATIVE_ONLY);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.NegativeIndent.html", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.NegativeIndent.html"), StandardCharsets.UTF_8);
if (allowNegativeIndent) {
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:-41.65pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:30.35pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
}
else
{
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
Assert.assertTrue(outDocContents.contains(
"<table cellspacing=\"0\" cellpadding=\"0\" style=\"margin-left:30.35pt; border:0.75pt solid #000000; -aw-border:0.5pt single #000000; -aw-border-insideh:0.5pt single #000000; -aw-border-insidev:0.5pt single #000000; border-collapse:collapse\">"));
}
value - The corresponding int value. The value must be one of HtmlElementSizeOutputMode constants.
getOfficeMathOutputMode
public int getOfficeMathOutputMode()
HtmlOfficeMathOutputMode.IMAGE.
Document doc = new Document(getMyDir() + "Office math.docx");
// When we save the document to HTML, we can pass a SaveOptions object
// to determine how the saving operation handles OfficeMath objects.
// Setting the "OfficeMathOutputMode" property to "HtmlOfficeMathOutputMode.Image"
// will render each OfficeMath object into an image.
// Setting the "OfficeMathOutputMode" property to "HtmlOfficeMathOutputMode.MathML"
// will convert each OfficeMath object into MathML.
// Setting the "OfficeMathOutputMode" property to "HtmlOfficeMathOutputMode.Text"
// will represent each OfficeMath formula using plain HTML text.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setOfficeMathOutputMode(htmlOfficeMathOutputMode);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.OfficeMathOutputMode.html", options);
int value. The returned value is one of HtmlOfficeMathOutputMode constants.
setOfficeMathOutputMode
public void setOfficeMathOutputMode(int value)
HtmlOfficeMathOutputMode.IMAGE.
Document doc = new Document(getMyDir() + "Office math.docx");
// When we save the document to HTML, we can pass a SaveOptions object
// to determine how the saving operation handles OfficeMath objects.
// Setting the "OfficeMathOutputMode" property to "HtmlOfficeMathOutputMode.Image"
// will render each OfficeMath object into an image.
// Setting the "OfficeMathOutputMode" property to "HtmlOfficeMathOutputMode.MathML"
// will convert each OfficeMath object into MathML.
// Setting the "OfficeMathOutputMode" property to "HtmlOfficeMathOutputMode.Text"
// will represent each OfficeMath formula using plain HTML text.
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setOfficeMathOutputMode(htmlOfficeMathOutputMode);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.OfficeMathOutputMode.html", options);
value - The corresponding int value. The value must be one of HtmlOfficeMathOutputMode constants.
getExportOriginalUrlForLinkedImages
public boolean getExportOriginalUrlForLinkedImages()
false.
true ImageData.getSourceFullName() / ImageData.setSourceFullName(java.lang.String) value is used as the URL of linked images and linked images are not loaded into document's folder or getImagesFolder() / setImagesFolder(java.lang.String).
false linked images are loaded into document's folder or getImagesFolder() / setImagesFolder(java.lang.String) and URL of each linked image is constructed depending on document's folder, getImagesFolder() / setImagesFolder(java.lang.String) and getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) properties.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
boolean value.
setExportOriginalUrlForLinkedImages
public void setExportOriginalUrlForLinkedImages(boolean value)
false.
true ImageData.getSourceFullName() / ImageData.setSourceFullName(java.lang.String) value is used as the URL of linked images and linked images are not loaded into document's folder or getImagesFolder() / setImagesFolder(java.lang.String).
false linked images are loaded into document's folder or getImagesFolder() / setImagesFolder(java.lang.String) and URL of each linked image is constructed depending on document's folder, getImagesFolder() / setImagesFolder(java.lang.String) and getImagesFolderAlias() / setImagesFolderAlias(java.lang.String) properties.
Document doc = new Document(getMyDir() + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions();
{
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setImageResolution(72);
options.setFontResourcesSubsettingSizeThreshold(0);
options.setFontsFolder(getArtifactsDir() + "Fonts");
options.setImagesFolder(getArtifactsDir() + "Images");
options.setResourceFolder(getArtifactsDir() + "Resources");
options.setFontsFolderAlias("http://example.com/fonts");
options.setImagesFolderAlias("http://example.com/images");
options.setResourceFolderAlias("http://example.com/resources");
options.setExportOriginalUrlForLinkedImages(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.FolderAlias.html", options);
value - The corresponding boolean value.
getExportCidUrlsForMhtmlResources
public boolean getExportCidUrlsForMhtmlResources()
false.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Setting this flag will replace "Content-Location" tags
// with "Content-ID" tags for each resource from the input document.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.MHTML);
{
options.setExportCidUrlsForMhtmlResources(exportCidUrlsForMhtmlResources);
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ContentIdUrls.mht", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ContentIdUrls.mht"), StandardCharsets.UTF_8);
if (exportCidUrlsForMhtmlResources) {
Assert.assertTrue(outDocContents.contains("Content-ID: <document.html>"));
Assert.assertTrue(outDocContents.contains("<link href=3D\"cid:styles.css\" type=3D\"text/css\" rel=3D\"stylesheet\" />"));
Assert.assertTrue(outDocContents.contains("@font-face { font-family:'Arial Black'; font-weight:bold; src:url('cid:arib=\r\nlk.ttf') }"));
Assert.assertTrue(outDocContents.contains("<img src=3D\"cid:image.003.jpeg\" width=3D\"350\" height=3D\"180\" alt=3D\"\" />"));
} else {
Assert.assertTrue(outDocContents.contains("Content-Location: document.html"));
Assert.assertTrue(outDocContents.contains("<link href=3D\"styles.css\" type=3D\"text/css\" rel=3D\"stylesheet\" />"));
Assert.assertTrue(outDocContents.contains("@font-face { font-family:'Arial Black'; font-weight:bold; src:url('ariblk.t=\r\ntf') }"));
Assert.assertTrue(outDocContents.contains("<img src=3D\"image.003.jpeg\" width=3D\"350\" height=3D\"180\" alt=3D\"\" />"));
}
boolean value.
setExportCidUrlsForMhtmlResources
public void setExportCidUrlsForMhtmlResources(boolean value)
false.
Document doc = new Document(getMyDir() + "Rendering.docx");
// Setting this flag will replace "Content-Location" tags
// with "Content-ID" tags for each resource from the input document.
HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.MHTML);
{
options.setExportCidUrlsForMhtmlResources(exportCidUrlsForMhtmlResources);
options.setCssStyleSheetType(CssStyleSheetType.EXTERNAL);
options.setExportFontResources(true);
options.setPrettyFormat(true);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ContentIdUrls.mht", options);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ContentIdUrls.mht"), StandardCharsets.UTF_8);
if (exportCidUrlsForMhtmlResources) {
Assert.assertTrue(outDocContents.contains("Content-ID: <document.html>"));
Assert.assertTrue(outDocContents.contains("<link href=3D\"cid:styles.css\" type=3D\"text/css\" rel=3D\"stylesheet\" />"));
Assert.assertTrue(outDocContents.contains("@font-face { font-family:'Arial Black'; font-weight:bold; src:url('cid:arib=\r\nlk.ttf') }"));
Assert.assertTrue(outDocContents.contains("<img src=3D\"cid:image.003.jpeg\" width=3D\"350\" height=3D\"180\" alt=3D\"\" />"));
} else {
Assert.assertTrue(outDocContents.contains("Content-Location: document.html"));
Assert.assertTrue(outDocContents.contains("<link href=3D\"styles.css\" type=3D\"text/css\" rel=3D\"stylesheet\" />"));
Assert.assertTrue(outDocContents.contains("@font-face { font-family:'Arial Black'; font-weight:bold; src:url('ariblk.t=\r\ntf') }"));
Assert.assertTrue(outDocContents.contains("<img src=3D\"image.003.jpeg\" width=3D\"350\" height=3D\"180\" alt=3D\"\" />"));
}
value - The corresponding boolean value.
getResolveFontNames
public boolean getResolveFontNames()
Document.getFontSettings() / Document.setFontSettings(com.aspose.words.FontSettings) when being written into HTML-based formats.
false and font family names are written to HTML as specified in source documents. That is, Document.getFontSettings() / Document.setFontSettings(com.aspose.words.FontSettings) are ignored and no resolution or substitution of font family names is performed.
true, Aspose.Words uses Document.getFontSettings() / Document.setFontSettings(com.aspose.words.FontSettings) to resolve each font family name specified in a source document into the name of an available font family, performing font substitution as required.
Document doc = new Document(getMyDir() + "Missing font.docx");
// This document contains text that names a font that we do not have.
Assert.assertNotNull(doc.getFontInfos().get("28 Days Later"));
// If we have no way of getting this font, and we want to be able to display all the text
// in this document in an output HTML, we can substitute it with another font.
FontSettings fontSettings = new FontSettings();
{
fontSettings.getSubstitutionSettings().getDefaultFontSubstitution().setDefaultFontName("Arial");
fontSettings.getSubstitutionSettings().getDefaultFontSubstitution().setEnabled(true);
}
doc.setFontSettings(fontSettings);
HtmlSaveOptions saveOptions = new HtmlSaveOptions(SaveFormat.HTML);
{
// By default, this option is set to 'False' and Aspose.Words writes font names as specified in the source document.
saveOptions.setResolveFontNames(resolveFontNames);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ResolveFontNames.html", saveOptions);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ResolveFontNames.html"), "utf-8");
Assert.assertTrue(outDocContents.matches("<span style=\"font-family:Arial\">"));
boolean value.
setResolveFontNames
public void setResolveFontNames(boolean value)
Document.getFontSettings() / Document.setFontSettings(com.aspose.words.FontSettings) when being written into HTML-based formats.
false and font family names are written to HTML as specified in source documents. That is, Document.getFontSettings() / Document.setFontSettings(com.aspose.words.FontSettings) are ignored and no resolution or substitution of font family names is performed.
true, Aspose.Words uses Document.getFontSettings() / Document.setFontSettings(com.aspose.words.FontSettings) to resolve each font family name specified in a source document into the name of an available font family, performing font substitution as required.
Document doc = new Document(getMyDir() + "Missing font.docx");
// This document contains text that names a font that we do not have.
Assert.assertNotNull(doc.getFontInfos().get("28 Days Later"));
// If we have no way of getting this font, and we want to be able to display all the text
// in this document in an output HTML, we can substitute it with another font.
FontSettings fontSettings = new FontSettings();
{
fontSettings.getSubstitutionSettings().getDefaultFontSubstitution().setDefaultFontName("Arial");
fontSettings.getSubstitutionSettings().getDefaultFontSubstitution().setEnabled(true);
}
doc.setFontSettings(fontSettings);
HtmlSaveOptions saveOptions = new HtmlSaveOptions(SaveFormat.HTML);
{
// By default, this option is set to 'False' and Aspose.Words writes font names as specified in the source document.
saveOptions.setResolveFontNames(resolveFontNames);
}
doc.save(getArtifactsDir() + "HtmlSaveOptions.ResolveFontNames.html", saveOptions);
String outDocContents = FileUtils.readFileToString(new File(getArtifactsDir() + "HtmlSaveOptions.ResolveFontNames.html"), "utf-8");
Assert.assertTrue(outDocContents.matches("<span style=\"font-family:Arial\">"));
value - The corresponding boolean value.
getReplaceBackslashWithYenSign
public boolean getReplaceBackslashWithYenSign()
false.
Document doc = new Document(getMyDir() + "Korean backslash symbol.docx");
// By default, Aspose.Words mimics MS Word's behavior and doesn't replace backslash characters with yen signs in
// generated HTML documents. However, previous versions of Aspose.Words performed such replacements in certain
// scenarios. This flag enables backward compatibility with previous versions of Aspose.Words.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setReplaceBackslashWithYenSign(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.ReplaceBackslashWithYenSign.html", saveOptions);
boolean value.
setReplaceBackslashWithYenSign
public void setReplaceBackslashWithYenSign(boolean value)
false.
Document doc = new Document(getMyDir() + "Korean backslash symbol.docx");
// By default, Aspose.Words mimics MS Word's behavior and doesn't replace backslash characters with yen signs in
// generated HTML documents. However, previous versions of Aspose.Words performed such replacements in certain
// scenarios. This flag enables backward compatibility with previous versions of Aspose.Words.
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setReplaceBackslashWithYenSign(true);
doc.save(getArtifactsDir() + "HtmlSaveOptions.ReplaceBackslashWithYenSign.html", saveOptions);
value - The corresponding boolean value.
getRemoveJavaScriptFromLinks
public boolean getRemoveJavaScriptFromLinks()
false.
boolean value.
setRemoveJavaScriptFromLinks
public void setRemoveJavaScriptFromLinks(boolean value)
false.
value - The corresponding boolean value.
memberwiseClone
protected java.lang.Object memberwiseClone()