GroupDocs.Conversion for Node.js via Java 24.2 Release Notes
This page contains release notes for GroupDocs.Conversion for Node.js via Java 24.2
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
| Key | Category | Summary | 
|---|---|---|
| CONVERSIONJAVA-2230 | Enhancement | Improved conversion chains | 
| CONVERSIONJAVA-2238 | Enhancement | Improved WordProcessing to EBook conversion | 
| CONVERSIONJAVA-2239 | Enhancement | Improved Note to Web conversion | 
| CONVERSIONJAVA-2240 | Enhancement | Improved conversion to EBook by skipping intermediate conversions | 
| CONVERSIONJAVA-2241 | Enhancement | Implemented Diagram to Xps saver and Svg to Xps saver | 
| CONVERSIONJAVA-2242 | Enhancement | Implemented Email to Pdf saver | 
| CONVERSIONJAVA-2243 | Enhancement | Implemented Vcf to Pdf saver | 
| CONVERSIONJAVA-2247 | Enhancement | Prevent exceptions on fonts loading | 
| CONVERSIONJAVA-2162 | Feature | converting tagged docx to tagged pdf | 
| CONVERSIONJAVA-2162 | Feature | converting tagged docx to tagged pdf | 
| CONVERSIONJAVA‑2264 | Fix | Exception 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