GroupDocs.Conversion For .NET 16.12.0 Release Notes

Major Features

There are 12 new features, improvements and fixes in this regular monthly release. The most notable are:

  • Conversions from and to Webp format
  • Improved memory handling
  • Improved performance
  • Fixed 5+ bugs

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
CONVERSIONNET‑1480Implement conversion from WebpNew Feature
CONVERSIONNET‑1483Implement conversion to WebpNew Feature
CONVERSIONNET‑1485Use LZW compression for internal tiff compressionImprovement
CONVERSIONNET‑1484Improve memory handlingImprovement
CONVERSIONNET‑1518Converting to image with set DPI options without setting image width and height is producing invalid imageFix
CONVERSIONNET‑1557HideWordTrackedChanges set to ’true’ but still its showing track chnages and markupFix
CONVERSIONNET‑1564Exception when loading EPUB in multithreadFix
CONVERSIONNET‑1566Exception when converting DWG to PNG in multithreadFix
CONVERSIONNET‑1567Exception is thrown when resizing specific Pdf fileFix
CONVERSIONNET‑1158Convert to HTML from PDF - Words in Bold Letters are not properly displayedFix
CONVERSIONNET‑845Pdf to Html conversion formatting issueFix
CONVERSIONNET‑1568Wrong characters when saving in HTMLFix

Public API and Backward Incompatible Changes

How to convert to WebP

var storagePath = @"c:\Worx\aspose\sources\GroupDocs.Conversion.Test\SampleFiles";
// Setup Conversion configuration
var conversionConfig = new ConversionConfig {StoragePath = storagePath};
//instantiating the conversion handler
var conversionHandler = new ConversionHandler(conversionConfig);
var options = new ImageSaveOptions
{
    ConvertFileType = ImageSaveOptions.ImageFileType.Webp,
    WebpOptions =
    {
        Lossless = true
    }
};
var convertedDocumentStream = conversionHandler.Convert<IList<Stream>>("sample.docx", options);