Latest release (August 2025)
There are 15+ features, improvements, and bug fixes in this release.
Full list of changes in this release
Key | Category | Summary |
---|---|---|
CONVERSIONNET-7939 | Feature | Introduce support for cropping visible SVG content when converting from SVG format |
CONVERSIONNET-7718 | Feature | Add an option to provide an attachment icon when converting from email |
CONVERSIONNET-7920 | Feature | Add support for converting SVGZ to word processing formats |
CONVERSIONNET-7909 | Enhancement | Conversion from Svg/Svgz to Eps |
CONVERSIONNET-7918 | Enhancement | Add support for converting SVGZ to presentation formats |
CONVERSIONNET-7917 | Enhancement | Optimize Web to PageDescriptionLanguage conversions by removing unnecessary intermediate steps |
CONVERSIONNET-7916 | Enhancement | Conversion from Svg/Svgz to Tex |
CONVERSIONNET-7919 | Enhancement | Add support for converting SVGZ to spreadsheet formats |
CONVERSIONNET-7940 | Bug | Low quality images when converting certain SVG documents to raster formats |
CONVERSIONNET-7924 | Bug | Pdf to WordProcessing without post-processing always outputs Docx/Doc |
CONVERSIONNET-7850 | Bug | PDF to JPEG: Conversion raises GroupDocsConversionException |
CONVERSIONNET-7479 | Bug | Spacing and formatting issue - RTF to PDF conversion |
CONVERSIONNET-7915 | Bug | Conversion from Svgz to Word processing formats throw an exeprion |
CONVERSIONNET-7907 | Bug | Dwf to image conversion throws “Index was outside the bounds of the array” exception |
CONVERSIONNET-7933 | Bug | SetLicense can’t find the license in the current directory |
CONVERSIONNET-7851 | Bug | PDF to JPEG: ObjectReferenceNotSet exception is raised |
CONVERSIONNET-7879 | Bug | Doc to Docx conversion - output has compatibility issues |
Major Features
SVG Cropping Support: Added the ability to crop visible SVG content during conversion, improving control over layout and output precision.
Custom Email Attachment Icons: Introduced a new option to specify a custom icon for attachments when converting from email formats.
SVGZ Conversion Expansion: Added support for converting SVGZ files to word processing, presentation, and spreadsheet formats.
Extended Format Support: Enabled conversion from SVG/SVGZ to EPS and TeX formats, and optimized Web-to-PageDescriptionLanguage conversions by removing redundant processing steps.
Performance Improvements: Significantly reduced application boot-up time for faster initialization and responsiveness.
Key Bug Fixes: Addressed multiple issues across SVG, PDF, email, RTF, and DWF conversions, improving reliability, rendering quality, and format compatibility.
Public API and backward incompatible changes
Introduced a new SvgLoadOptions class. It includes the CropToContentBounds property, which allows cropping the SVG to its visible content before conversion. This can help remove unnecessary white space and tightly frame the output.
SvgLoadOptions loadOptions = new SvgLoadOptions(); loadOptions.CropToContentBounds = true;
Introduced two new properties in EmailLoadOptions class, UseDefaultAttachemetnIcons and AttachmentIcons.
using (var converter = new Converter(source, loadContext => new EmailLoadOptions { UseDefaultAttachmentIcons = false, AttachmentIcons = new List<AttachmentIcon> { new AttachmentIcon("jpg", File.ReadAllBytes("jpeg_icon.png")), new AttachmentIcon("pdf",File.ReadAllBytes("pdf_icon.png")), new AttachmentIcon("docx", File.ReadAllBytes("word_icon.jpg")), new AttachmentIcon("_default", File.ReadAllBytes("not_found_icon.png")) } })) { var options = new PdfConvertOptions(); converter.Convert("converted.pdf", options); }