GroupDocs.Conversion for Java 24.9 Release Notes
This page contains release notes for GroupDocs.Conversion for Java 24.9
Major Features
There are 3+ features and bug fixes in this release:
- Conversions from XML transformed through XSLT to any supported format
- Improved Vcf to Web conversions
- Improved handling of custom font folders when converting from a presentation to html
Full List of Issues Covering all Changes in this Release
| Key | Category | Summary |
|---|---|---|
| CONVERSIONNET-6521 | Feature | Convert XML transformed through XSLT to any supported output format |
| CONVERSIONNET-6543 | Enhancement | Vcf to Web conversion should not save assets in temp folder on disk |
| CONVERSIONNET-6540 | Enhancement | Improve thread safety when loading Tex documents |
| CONVERSIONNET-6538 | Enhancement | Improve thread safety when loading Note documents |
| CONVERSIONNET-6529 | Enhancement | Improve thread safety when loading and creating documents |
| CONVERSIONNET-6518 | Enhancement | Improve thread safety in FontFactory class |
| CONVERSIONNET-6116 | Enhancement | Improve conversion from msg to pdf when the email contains images |
| CONVERSIONNET-6512 | Enhancement | Using Custom Fonts in PPTX to HTML Conversion issue |
| CONVERSIONNET-6546 | Bug | Pdf compliance not properly applied |
| CONVERSIONNET-6545 | Bug | Improper ProjectManagement to Image conversion |
| CONVERSIONNET-6528 | Bug | Spreadsheet to Web conversion saves assets in temp folder on disk |
| CONVERSIONNET-6515 | Bug | Failed Png to Emf, Wmf, Emz and Wmz on macOS |
| CONVERSIONNET-3832 | Bug | EPS to XLS conversion issue |
Introduced new property XsltFactoryin XmlLoadOptions class.
Usage example:
String source = "books.xml"; String xslt = "books.xsl"; XmlLoadOptions loadOptions = new XmlLoadOptions(); loadOptions.setXsltFactory(() -> File.openRead(xslt)); try (Converter converter = new Converter(source, () -> loadOptions)) { PdfConvertOptions options = new PdfConvertOptions(); converter.convert("converted.pdf", options); }
Public API and backward incompatible changes
None