GroupDocs.Conversion For .NET 3.3.0 Release Notes

Major Features

There are 16 improvements and fixes in this regular monthly release. The most notable are:

  • Conversion of SVG documents
  • Conversion of XPS documents
  • Conversion of ICO files
  • When converting to Slides, option for removing slides comments
  • Fixed XLSX to PNG/JPG/HTML conversion
  • Respecting DPI option when converting to image

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
CONVERSIONNET‑834Option for removing comments when converting slides documentsNew Feature
CONVERSIONNET‑835Implement SVG document conversionNew Feature
CONVERSIONNET‑846Implement XPS document conversionNew Feature
CONVERSIONNET‑886Implement conversion to ICONew Feature
CONVERSIONNET‑844xlsx to png Object null Reference exceptionFix
CONVERSIONNET‑889Conversion from XLSX to PNG/JPG/HTML not Working ProperlyFix
CONVERSIONNET‑890Converted File Name issue in Excel file to PNGFix
CONVERSIONNET‑897Converting large XLS file to image with UsePdf=false is producing blurred imagesFix
CONVERSIONNET‑898Missing pages when converting XLS file to image with UsePdf=trueFix
CONVERSIONNET‑899Excel to PNG/JPG/JPEG Low Image Quality Dpi not effecingFix
CONVERSIONNET‑907PDF to Image conversion - target resolution is not changed when setting DpiFix
CONVERSIONNET‑908Words to Image conversion - target resolution is not changed when setting DpiFix
CONVERSIONNET‑909Slides to Image conversion - target resolution is not changed when setting DpiFix
CONVERSIONNET‑910Tasks to Image conversion - target resolution is not changed when setting DpiFix
CONVERSIONNET‑911Image to Image conversion - target resolution is not changed when setting DpiFix
CONVERSIONNET‑912Diagram to Image conversion - target resolution is not changed when setting DpiFix

Public API and Backward Incompatible Changes

How to remove slides comments when converting to Slides
const string sourceFileName = "sample.pptx"; //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 SlidesSaveOptions
{
OutputType = OutputType.String,
RemoveSlidesComments = true
};

var result = conversionHandler.Convert<string>(sourceFileName, saveOptions);