Another monthly release of GroupDocs.Conversion for .NET 18.3 is on-board. This release covers some new features, few improvement and a bug fix. API allows developers to set default zoom when converting to Cells, Words and Slides. However, zoom option for PDF conversion is improved, PSD to PDF conversion is improved and XPS to PDF conversion issue is fixed. For further details included in this month’s release, please visit the release notes
Features
- Set default zoom when converting to Cells, Words and Slides
- Specific options for converting CSV documents
New Properties Introduced
DefaultFont in CellsLoadOptions Class
var config = new ConversionConfig();
var conversionHandler = new ConversionHandler(config);
var loadOptions = new CellsLoadOptions();
loadOptions.DefaultFont = "Verdana";
var saveOptions = new PdfSaveOptions();
var convertedDocument = conversionHandler.Convert("source.xlsx", loadOptions, saveOptions);
Detect page orientation for the supported formats
var documentInfo = conversionHandler.GetDocumentInfo("source.docx");
Console.Write(documentInfo.PageOrientation);
Show watermark behind the text
var saveOptions = new PdfSaveOptions();
saveOptions.WatermarkOptions.Background = true;
Improvements
- Set zoom when converting to Pdf document
- Update API for getting document info to detect page orientation for the supported formats
- Set default font to replace all missing fonts when converting Words and Cells document
- Conversion improvement when converting Psd and Odg to Pdf
Bug Fixes
- XPS to PDF conversion failed
API Resources
Here are a few channels and resources for you to download, learn, try and get technical support on GroupDocs.Conversion:- Downloads – MSI Package as well as Zipped DLLs
- NuGet – Nuget install
- Documentation – Product Wiki
- Video Tutorials – YouTube Videos
- Product Support Forum – Technical Support Forum for GroupDocs.Conversion
- Examples/Plugins/Showcases – GitHub Source Code Examples