Load WordProcessing document with options

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:

import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
import com.groupdocs.conversion.options.load.WordProcessingLoadOptions;
...
WordProcessingLoadOptions loadOptions = new WordProcessingLoadOptions();
loadOptions.setHideComments(true);

Converter converter = new Converter("sample.docx", loadOptions);
PdfConvertOptions options = new PdfConvertOptions();
converter.convert("converted.pdf", options);

Hide tracked changes

The following code snippet shows how to convert a WordProcessing document and hide tracked changes:

import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
import com.groupdocs.conversion.options.load.WordProcessingLoadOptions;
...
WordProcessingLoadOptions loadOptions = new WordProcessingLoadOptions();
loadOptions.setHideWordTrackedChanges(true);

Converter converter = new Converter("sample.docx", loadOptions);
PdfConvertOptions options = new PdfConvertOptions();
converter.convert("converted.pdf", options);

Specify font substitution

The following code snippet shows how to convert a WordProcessing document and specify font substitution for missing fonts:

import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.contracts.FontSubstitute;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
import com.groupdocs.conversion.options.load.WordProcessingLoadOptions;
import java.util.ArrayList;
import java.util.List;
...
WordProcessingLoadOptions loadOptions = new WordProcessingLoadOptions();
loadOptions.setAutoFontSubstitution(false);
loadOptions.setDefaultFont("Helvetica");
List<FontSubstitute> fontSubstitutes = new ArrayList<FontSubstitute>();
fontSubstitutes.add(FontSubstitute.create("Tahoma", "Arial"));
fontSubstitutes.add(FontSubstitute.create("Times New Roman", "Arial"));
loadOptions.setAutoFontSubstitution(false);
loadOptions.setFontSubstitutes(fontSubstitutes);

Converter converter = new Converter("sample.docx", loadOptions);
PdfConvertOptions options = new PdfConvertOptions();
converter.convert("converted.pdf", options);