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 – 现在在面向 .NET 6 时也可以转换 Photoshop (.psd, .psb) 文件。
CONVERSIONNET‑8082 Advanced PDF page‑resize scaling modes – 四个全新的 ResizeMode 选项(ScaleToFit, ScaleToWidth, ScaleToHeight, ScaleToFill)提供对将内容转换为 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 修复将 AI、PSD 和 PSB 文件转换为 MHTML/HTML 时出现的问题。
CONVERSIONNET‑8106 Bug 修复将 AI、PSD 和 PSB 文件转换为 FODS/SXC/XLT 时的错误。
CONVERSIONNET‑8081 Bug 纠正了 PDF 页面尺寸更改导致内容从顶部裁剪(而非底部)的错误。
CONVERSIONNET‑8079 Bug 解决了在转换包含特定或受限页面的 MOBI 文件时出现的 XPS 输出损坏问题。
CONVERSIONNET‑8051 Bug 修复了在所有受支持的目标框架上对 PSB 的转换问题。
CONVERSIONNET‑6461 Bug 优化了 DWG → PDF 转换,显著降低 CPU 和内存消耗。
CONVERSIONNET‑8083 Bug 现在在转换过程中邮件附件的处理更加可靠。
CONVERSIONNET‑8103 Bug 修复了电子表格转换为 HTML/MHTML 时的失败问题。

How to get the update

  • NuGet – 通过 NuGet 升级到最新的 GroupDocs.Conversion 包。请选择相应的目标框架包:

    跨平台 .NET 6GroupDocs.Conversion.Net.Core
    仅 Windows .NET Framework 4.6.2 / .NET 6GroupDocs.Conversion.Net

  • Direct download – 从 GroupDocs 网站的 GroupDocs.Conversion for .NET 25.11 发布页面下载已编译的程序集(包括 .NET Framework 和 .NET Core 版本)。

Resources


Stay tuned for more updates, and thank you for using GroupDocs.Conversion!