GroupDocs.Parser for .NET 25.12.1 Release Notes
This page contains release notes for GroupDocs.Parser for .NET 25.12.1
Full List of Issues Covering all Changes in this Release
| Key | Summary | Category |
|---|---|---|
| PARSERNET-2796 | Embed the OCR resource file into the library | Enhancement |
| PARSERNET-2797 | Implement setting up a storage path for resource files | Enhancement |
Public API and Backward Incompatible Changes
Embed the OCR resource file into the library
Description
The OCR resource files are now packaged directly inside the library, eliminating the need for external distribution of these assets. A new Resources class has been introduced to manage some parameters of embedded resources.
Public API changes
None.
Usage
None.
Implement setting up a storage path for resource files
Description
Added a configurable storage path to allow developers to specify where to read unpacked resource files (including OCR files) for use by the library during operation.
Public API changes
Class Resources has been added to GroupDocs.Parser namespace.
Property System.String StoragePath has been added to GroupDocs.Parser.Resources class.
Usage
using GroupDocs.Parser;
// Set a custom storage path for resources
Resources.StoragePath = @"C:\MyApp\Resources";
using (Parser parser = new Parser(filePath))
{
int pageIndex = 0;
IEnumerable<PageTableArea> tables = parser.GetTables(pageIndex);
}