GroupDocs.Parser for .NET 25.12.1 Release Notes

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
PARSERNET-2796Embed the OCR resource file into the libraryEnhancement
PARSERNET-2797Implement setting up a storage path for resource filesEnhancement

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);
}