GroupDocs.Conversion for .NET 21.9 Release Notes
This page contains release notes for GroupDocs.Conversion for .NET 21.9
Major Features
There are 10+ features, improvements and bug-fixes in this release, most notable are:
- Conversion from image with optical recognition
- Conversion from Chm
- Autoscale text watermark
Full List of Issues Covering all Changes in this Release
| Key | Category | Summary | 
|---|---|---|
| CONVERSIONNET‑4683 | Feature | Conversion from image with optical image recognition | 
| CONVERSIONNET‑4757 | Feature | Implement conversion from Chm | 
| CONVERSIONNET‑4790 | Feature | Auto scale text watermark depending on the length of the string | 
| CONVERSIONNET‑3873 | Fix | PDF to HTML conversion issue, parameter is not valid | 
| CONVERSIONNET‑4034 | Fix | XPS to XLS conversion issue | 
| CONVERSIONNET‑4275 | Fix | Cannot convert particular Xps document | 
| CONVERSIONNET‑4315 | Fix | Failed to convert Plt | 
| CONVERSIONNET‑4332 | Fix | PDF to DOCX conversion adds a frame around paragraphs | 
| CONVERSIONNET‑4674 | Fix | ‘Can not save ??? to csv’ exception when converting PST to CSV | 
| CONVERSIONNET‑4805 | Fix | Incorrect text watermark angle when applying on image | 
| CONVERSIONNET‑4811 | Fix | Excel to PDF conversion issue | 
| CONVERSIONNET‑4820 | Fix | PDF to DOCX: “Object reference not set to an instance of an object” exception | 
| CONVERSIONNET‑4829 | Fix | Wrong pdf layout when converting a specific eml | 
Public API and Backward Incompatible Changes
- Introduced new class PageSize 
- Introduced new class PageOrientation 
- Introduced new class PdfRecognitionMode 
- Introduced new properties in class WordProcessingConvertOptions - /// <summary> /// Recognition mode when converting from pdf /// </summary> public PdfRecognitionMode PdfRecognitionMode { get; set; } /// <summary> /// Desired page size after conversion /// </summary> public PageSize PageSize { get; set; } /// <summary> /// Desired page orientation after conversion /// </summary> public PageOrientation PageOrientation { get; set; }
- Introduced new properties in class PdfConvertOptions - /// <summary> /// Desired page size after conversion /// </summary> public PageSize PageSize { get; set; } /// <summary> /// Desired page orientation after conversion /// </summary> public PageOrientation PageOrientation { get; set; }