GroupDocs.Conversion for Java 24.1 Release Notes

Major Features

There are 5+ features and bug fixes in this release:

  • Improved image conversions
  • Improved conversion from Email to PDF
  • Prevented exceptions on fonts loading
  • Improved conversion to EBook by skipping intermediate conversions
  • Conversions from tagged Word document to tagged PDF document

Full List of Issues Covering all Changes in this Release

KeyCategorySummary
CONVERSIONJAVA-2230EnhancementImproved conversion chains
CONVERSIONJAVA-2238EnhancementImproved WordProcessing to EBook conversion
CONVERSIONJAVA-2239EnhancementImproved Note to Web conversion
CONVERSIONJAVA-2240EnhancementImproved conversion to EBook by skipping intermediate conversions
CONVERSIONJAVA-2241EnhancementImplemented Diagram to Xps saver and Svg to Xps saver
CONVERSIONJAVA-2242EnhancementImplemented Email to Pdf saver
CONVERSIONJAVA-2243EnhancementImplemented Vcf to Pdf saver
CONVERSIONJAVA-2247EnhancementPrevent exceptions on fonts loading
CONVERSIONJAVA-2162Featureconverting tagged docx to tagged pdf
CONVERSIONJAVA-2162Featureconverting tagged docx to tagged pdf

Introduced new property PreserveDocumentStructure in WordProcessingLoadOptions class.

Usage example:
public class App {
    public static void main(String[] args) {
        String source = "book.docx";
        WordProcessingLoadOptions loadOptions = new WordProcessingLoadOptions();
        loadOptions.setPreserveDocumentStructure(true);
        try (Converter converter = new Converter(source, () -> loadOptions)) {
            PdfConvertOptions options = new PdfConvertOptions();
            converter.convert("book.pdf", options);
        }
    }
}

Public API and backward incompatible changes

None