Latest release (November 2025)

There are 10 features, improvements, and bug fixes in this release.

Full list of changes in this release

KeyCategorySummary
CONVERSIONNET-8050FeatureAdd support for converting from PSD and PSB formats on .NET 6 target
CONVERSIONNET-8082FeatureAdd page resize scaling modes when converting to PDF (ScaleToFit, ScaleToWidth, ScaleToHeight, ScaleToFill)
CONVERSIONNET-8105BugCannot convert AI, PSD and PSB to mhtml/html
CONVERSIONNET-8106BugCannot convert AI, PSD and PSB to FODS/SXC/XLT
CONVERSIONNET-8081BugContent misaligned after PDF page size change - crops from top instead of bottom
CONVERSIONNET-8079BugMOBI to XPS conversion producing corrupted output when converting specific or limited pages
CONVERSIONNET-8051BugConversion to PSB format is not working across all target frameworks
CONVERSIONNET-6461BugDWG to PDF: conversion take too much resources
CONVERSIONNET-8083BugAttachments not processed when converting from email
CONVERSIONNET-8103BugCannot 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

  1. 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 overflow
  • ScaleToWidth - Scales content to match page width, maintaining aspect ratio
  • ScaleToHeight - Scales content to match page height, maintaining aspect ratio
  • ScaleToFill - 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);
    }