We’re happy to announce the GroupDocs.Conversion for .NET 25.11 release, available as of November 2025. This update adds two major features, introduces a new public API property, and resolves ten conversion‑related bugs.
What’s new in this release
New features
| ID | Feature |
|---|---|
| CONVERSIONNET‑8050 | PSD/PSB support on .NET 6 – you can now convert Photoshop (.psd, .psb) files when targeting .NET 6. |
| CONVERSIONNET‑8082 | Advanced PDF page‑resize scaling modes – four new ResizeMode options (ScaleToFit, ScaleToWidth, ScaleToHeight, ScaleToFill) give fine‑grained control over how content is scaled when converting to PDF. |
Public API change (backward‑incompatible)
The PdfConvertOptions class now exposes a ResizeMode property (type PageResizeMode). The default remains AlignTopLeft, which keeps the original layout unchanged. Switching to any of the new scaling strategies is as simple as setting the property before conversion.
using (Converter converter = new Converter("sample.pdf"))
{
PdfConvertOptions options = new PdfConvertOptions();
// Proportional scaling to fit the target page size
options.ResizeMode = PageResizeMode.ScaleToFit;
options.SizeSettings.PageSize = PageSize.A4;
converter.Convert("converted.pdf", options);
}
For a complete reference, see the ResizeMode documentation.
Fixes and enhancements
| ID | Category | Description |
|---|---|---|
| CONVERSIONNET‑8105 | Bug | Fixed conversion of AI, PSD and PSB files to MHTML/HTML. |
| CONVERSIONNET‑8106 | Bug | Fixed conversion of AI, PSD and PSB files to FODS/SXC/XLT. |
| CONVERSIONNET‑8081 | Bug | Corrected PDF page‑size changes that previously cropped content from the top instead of the bottom. |
| CONVERSIONNET‑8079 | Bug | Resolved corrupted XPS output when converting MOBI files that contain specific or limited pages. |
| CONVERSIONNET‑8051 | Bug | Fixed PSB conversion across all supported target frameworks. |
| CONVERSIONNET‑6461 | Bug | Optimized DWG → PDF conversion to dramatically reduce CPU and memory consumption. |
| CONVERSIONNET‑8083 | Bug | Email‑attachment processing is now reliable during conversion. |
| CONVERSIONNET‑8103 | Bug | Fixed spreadsheet‑to‑HTML/MHTML conversion failures. |
How to get the update
-
NuGet – Upgrade to the latest GroupDocs.Conversion package via NuGet. Choose the appropriate target‑framework package:
Cross‑platform .NET 6 →
GroupDocs.Conversion.Net.Core
Windows‑only .NET Framework 4.6.2 / .NET 6 →GroupDocs.Conversion.Net -
Direct download – Download the compiled assemblies (both .NET Framework and .NET Core) from the GroupDocs.Conversion for .NET 25.11 release page on the GroupDocs website.
Resources
- Full release notes – (see the release notes page for this version)
- Documentation – https://docs.groupdocs.com/conversion/net/
- Free Support Forum – https://forum.groupdocs.com/c/conversion/7
Stay tuned for more updates, and thank you for using GroupDocs.Conversion!