Latest release (November 2025)
There are 10 features, improvements, and bug fixes in this release.
Full list of changes in this release
| Key | Category | Summary |
|---|---|---|
| CONVERSIONNET-8050 | Feature | Add support for converting from PSD and PSB formats on .NET 6 target |
| CONVERSIONNET-8082 | Feature | Add page resize scaling modes when converting to PDF (ScaleToFit, ScaleToWidth, ScaleToHeight, ScaleToFill) |
| CONVERSIONNET-8105 | Bug | Cannot convert AI, PSD and PSB to mhtml/html |
| CONVERSIONNET-8106 | Bug | Cannot convert AI, PSD and PSB to FODS/SXC/XLT |
| CONVERSIONNET-8081 | Bug | Content misaligned after PDF page size change - crops from top instead of bottom |
| CONVERSIONNET-8079 | Bug | MOBI to XPS conversion producing corrupted output when converting specific or limited pages |
| CONVERSIONNET-8051 | Bug | Conversion to PSB format is not working across all target frameworks |
| CONVERSIONNET-6461 | Bug | DWG to PDF: conversion take too much resources |
| CONVERSIONNET-8083 | Bug | Attachments not processed when converting from email |
| CONVERSIONNET-8103 | Bug | Cannot convert spreadsheet to html/mhtml |
Major Features
PSD/PSB Support on .NET 6: Added support for converting from PSD and PSB formats when targeting .NET 6.
Advanced PDF Scaling Modes: Introduced new page scaling options for PDF output: ScaleToFit, ScaleToWidth, ScaleToHeight, and ScaleToFill, providing greater control over layout resizing.
Key Bug Fixes: Addressed conversion issues involving AI, PSD, PSB, email attachments, and spreadsheets. Fixed layout misalignment during PDF resizing, resolved MOBI-to-XPS corruption, and optimized resource usage for DWG-to-PDF conversion.
Public API and backward incompatible changes
- Introduced ResizeMode property in the PdfConvertOptions class. It offers five different scaling strategies:
AlignTopLeft- No scaling, aligns content to top-left corner (default behavior)ScaleToFit- Proportionally scales content to fit within new dimensions without overflowScaleToWidth- Scales content to match page width, maintaining aspect ratioScaleToHeight- Scales content to match page height, maintaining aspect ratioScaleToFill- Stretches content to fill entire page (may distort aspect ratio)using (Converter converter = new Converter("sample.pdf")) { PdfConvertOptions options = new PdfConvertOptions(); options.ResizeMode = PageResizeMode.ScaleToFit // Proportional scaling options.SizeSettings.PageSize = PageSize.A4; converter.Convert("converted.pdf", options); }