Load WordProcessing document with options
Leave feedback
GroupDocs.Conversion provides the WordProcessingLoadOptions class to give you better control over how the source WordProcessing document will be processed. The following options could be set:
setFormat allows you to specify explicitly the type of the source WordProcessing document. Available options are: Doc, Docm, Docx, Dot, Dotm, Dotx, Rtf, Odt, Ott, Mobi, Txt.
setAutoFontSubstitution - if false, GroupDocs.Conversion uses the DefaultFont for the substitution of missing fonts. If true, GroupDocs.Conversion evaluates all the related fields in FontInfo (Panose, Sig, etc.) for the missing font and finds the closest match among the available font sources. Note: that the font substitution mechanism will override the DefaultFont in cases when FontInfo for the missing font is available in the document.
setDefaultFont specifies the font to use if a document font is missing.
setFontSubstitutes sets substitute specific fonts from the source document.
setPassword specifies a password to unlock the protected document.
setHideWordTrackedChanges specifies that tracked changes should not be included in the converted document.
setHideComments specifies that comments from the source document should be hidden in the converted document.
Hide comments
The following code snippet shows how to convert a WordProcessing document and hide comments:
The following code snippet shows how to convert a WordProcessing document and specify font substitution for missing fonts:
importcom.groupdocs.conversion.Converter;importcom.groupdocs.conversion.contracts.FontSubstitute;importcom.groupdocs.conversion.options.convert.PdfConvertOptions;importcom.groupdocs.conversion.options.load.WordProcessingLoadOptions;importjava.util.ArrayList;importjava.util.List;...WordProcessingLoadOptionsloadOptions=newWordProcessingLoadOptions();loadOptions.setAutoFontSubstitution(false);loadOptions.setDefaultFont("Helvetica");List<FontSubstitute>fontSubstitutes=newArrayList<FontSubstitute>();fontSubstitutes.add(FontSubstitute.create("Tahoma","Arial"));fontSubstitutes.add(FontSubstitute.create("Times New Roman","Arial"));loadOptions.setAutoFontSubstitution(false);loadOptions.setFontSubstitutes(fontSubstitutes);Converterconverter=newConverter("sample.docx",loadOptions);PdfConvertOptionsoptions=newPdfConvertOptions();converter.convert("converted.pdf",options);
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.