GroupDocs.Conversion For .NET 16.10.0 Release Notes

Major Features

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

  • Converting from CAD documents to Cells, Html, Image, Pdf, Slides and Words
  • Setting default fonts to be used when converting from Slides if used font do not exist in the system
  • FixedLayout option when converting Word and Pdf to Html

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
CONVERSIONNET‑1318Convert from CAD documents to Cells, Html, Image, Pdf, Slides, WordsNew Feature
CONVERSIONNET‑1077Setting default FontsNew Feature
CONVERSIONNET‑1305Add FixedLayout option to Words to Html conversionsNew Feature
CONVERSIONNET‑1304Add FixedLayout option to Pdf to Html conversionsNew Feature
CONVERSIONNET‑1351Coversion with document as Stream input not workingFix

Public API and Backward Incompatible Changes

Introduced SlidesLoadOptions with ability to specify default font for rendering if a presentation font is missing.
 var loadOptions = new SlidesLoadOptions
{
	Password = "secret",
	DefaultFont = "Verdana"  // Default font for rendering the presentation. The following font will be used if a presentation font is missing.
};
HtmlSaveOptions class is extended with new property - FixedLayout - if true html will be rendered with absolutely positioned elements
 var saveOptions = new HtmlSaveOptions
{

	FixedLayout = true

};