GroupDocs.Conversion for .NET 22.8 Release Notes

Major Features

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

  • Conversion from Amazon Kindle AZW3 format
  • New load option to keep original date field value when converting from wordprocessing document
  • Improved Pdf to JPEG/TIFF conversions

Full List of Issues Covering all Changes in this Release

KeyCategorySummary
CONVERSIONNET‑5429FeatureConversion from Amazon Kindle AZW3 format
CONVERSIONNET‑5433EnhancementNew load option to keep original date field value when converting from wordprocessing document
CONVERSIONNET‑5416FixComments still visible despite using HideComments when converting docx to pdf
CONVERSIONNET‑5419FixFile damaged or corrupt
CONVERSIONNET‑5394FixCannot convert from multipage Tiff when the source filename extension is “tif”
CONVERSIONNET‑5393FixFor a presentation file the value of IsPasswordProtected property is not in PropertiesNames of IDocumentInfo
CONVERSIONNET‑5237FixPDF to JPEG/TIFF conversion problem
CONVERSIONNET‑5370FixHTML to PDF conversion issue

Public API and Backward Incompatible Changes

  1. Introduced new property in class WordProcessingLoadOptions

    /// <summary>
    /// Keep original value of date field. Default: false
    /// </summary>
    public bool KeepDateFieldOriginalValue { get; set; }
    
  2. When run GroupDocs.Conversion for .NET under linux with .NET6, the type initializer for ‘gdip’ throws exception
    To solve this put in runtimeconfig.json or in runtimeconfig.template.json the following:

    {
        "configProperties": {
            "System.Drawing.EnableUnixSupport": true,
        }
    }
    

    To learn more about this read here