GroupDocs.Conversion for .NET 21.9 Release Notes

Major Features

There are 10+ features, improvements and bug-fixes in this release, most notable are:

  • Conversion from image with optical recognition
  • Conversion from Chm
  • Autoscale text watermark

Full List of Issues Covering all Changes in this Release

KeyCategorySummary
CONVERSIONNET‑4683FeatureConversion from image with optical image recognition
CONVERSIONNET‑4757FeatureImplement conversion from Chm
CONVERSIONNET‑4790FeatureAuto scale text watermark depending on the length of the string
CONVERSIONNET‑3873FixPDF to HTML conversion issue, parameter is not valid
CONVERSIONNET‑4034FixXPS to XLS conversion issue
CONVERSIONNET‑4275FixCannot convert particular Xps document
CONVERSIONNET‑4315FixFailed to convert Plt
CONVERSIONNET‑4332FixPDF to DOCX conversion adds a frame around paragraphs
CONVERSIONNET‑4674Fix‘Can not save ??? to csv’ exception when converting PST to CSV
CONVERSIONNET‑4805FixIncorrect text watermark angle when applying on image
CONVERSIONNET‑4811FixExcel to PDF conversion issue
CONVERSIONNET‑4820FixPDF to DOCX: “Object reference not set to an instance of an object” exception
CONVERSIONNET‑4829FixWrong pdf layout when converting a specific eml

Public API and Backward Incompatible Changes

  1. Introduced new class PageSize

  2. Introduced new class PageOrientation

  3. Introduced new class PdfRecognitionMode

  4. Introduced new properties in class WordProcessingConvertOptions

    /// <summary>
    /// Recognition mode when converting from pdf
    /// </summary>
    public PdfRecognitionMode PdfRecognitionMode { get; set; }
    
    /// <summary>
    /// Desired page size after conversion
    /// </summary>
    public PageSize PageSize { get; set; }
    
    /// <summary>
    /// Desired page orientation after conversion
    /// </summary>
    public PageOrientation PageOrientation { get; set; }
    
  5. Introduced new properties in class PdfConvertOptions

    /// <summary>
    /// Desired page size after conversion
    /// </summary>
    public PageSize PageSize { get; set; }
    
    /// <summary>
    /// Desired page orientation after conversion
    /// </summary>
    public PageOrientation PageOrientation { get; set; }