GroupDocs.Conversion for .NET 17.3.0 Release Notes

Major Features

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

  • Conversions from DNG
  • Conversions from DGN
  • Conversions from VSSX and VSTX
  • Conversions from ONE
  • Option to hide WORD comments when converting from word
  • Improved performance of HTML to PDF conversions
  • Fixed 1 bug

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
CONVERSIONNET‑1729Implement conversion from DNGNew Feature
CONVERSIONNET‑1737Implement conversion from DGNNew Feature
CONVERSIONNET‑1745Implement conversion from VSSX and VSTXNew Feature
CONVERSIONNET‑1761Ability to hide words comments when converting from wordNew Feature
CONVERSIONNET‑1760Implement conversion from ONENew Feature
CONVERSIONNET‑1719Convert Html to Pdf improvementsImprovement
CONVERSIONNET‑1597Memory leak when converting CAD stream to imageFix

Public API and Backward Incompatible Changes

How to hide comments when converting from Words 

const string sourceFileName = "sample.docx"; //TODO: Put the source filename here
// Setup Conversion configuration
var conversionConfig = new ConversionConfig
{
    CachePath = "cache",
    StoragePath = "."
};
var conversionHandler = new ConversionHandler(conversionConfig);

// Save options
SaveOptions saveOptions = new PdfSaveOptions
{
    OutputType = OutputType.String,
    HideWordComments = false
};
 
var result = conversionHandler.Convert<string>(sourceFileName, saveOptions);