GroupDocs.Conversion for Node.js via Java 24.2 Release Notes

Major Features

There are 6+ 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
  • Fixed an exception on Pdf to Image conversion.

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
CONVERSIONJAVA‑2264FixException on Pdf to Image conversion

Introduced new property PreserveDocumentStructure in WordProcessingLoadOptions class.

Usage example:
    const source = "book.docx"
    const loadOptions = new groupdocs.conversion.WordProcessingLoadOptions()
    loadOptions.setPreserveDocumentStructure(true)
    try {
        const converter = new groupdocs.conversion.Converter(source, loadOptions)
        const options = new groupdocs.conversion.PdfConvertOptions()
        converter.convert("book.pdf", options)
    }

Public API and backward incompatible changes

None