We’re happy to announce the release of GroupDocs.Parser for .NET 25.12.1, available as of December 2025. This update focuses on improving resource handling for OCR operations and adds a simple way to configure where those resources are stored.

우리는 GroupDocs.Parser for .NET 25.12.1의 릴리스를 발표하게 되어 기쁩니다. 이 릴리스는 2025년 12월부터 사용할 수 있습니다. 이번 업데이트는 OCR 작업을 위한 리소스 처리 개선에 중점을 두며, 리소스 저장 위치를 구성하는 간단한 방법을 추가합니다.

What’s new in this release

이번 릴리스의 새로운 기능

Category Issue Description
Enhancement PARSERNET‑2796 Embed the OCR resource file directly into the library, removing the need to distribute external assets.
Enhancement PARSERNET‑2797 Add a configurable storage path for resource files (including the embedded OCR files).
카테고리 이슈 설명
향상 PARSERNET‑2796 OCR 리소스 파일을 라이브러리에 직접 포함시켜 외부 자산을 배포할 필요를 없앱니다.
향상 PARSERNET‑2797 리소스 파일(내장 OCR 파일 포함)을 위한 구성 가능한 저장 경로를 추가합니다.

Embed the OCR resource file into the library (PARSERNET‑2796)

라이브러리에 OCR 리소스 파일 포함 (PARSERNET‑2796)

The OCR assets are now packaged inside the GroupDocs.Parser assembly. No API changes are required – simply reference the library as before and the OCR functionality will locate its resources internally.

OCR 자산이 이제 GroupDocs.Parser 어셈블리 안에 패키징됩니다. API 변경이 필요하지 않으며, 이전과 같이 라이브러리를 참조하기만 하면 OCR 기능이 내부 리소스를 자동으로 찾습니다.

Set a custom storage path for resource files (PARSERNET‑2797)

리소스 파일을 위한 사용자 지정 저장 경로 설정 (PARSERNET‑2797)

A new Resources class has been introduced in the GroupDocs.Parser namespace. It exposes a StoragePath property that lets you point the parser to a folder where unpacked resources (e.g., OCR dictionaries) can be read from at runtime.

GroupDocs.Parser 네임스페이스에 새로운 Resources 클래스가 도입되었습니다. StoragePath 속성을 통해 파서가 런타임에 해제된 리소스(예: OCR 사전)를 읽을 수 있는 폴더를 지정할 수 있습니다.

Usage example

사용 예시

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);
    // Process tables …
}

Fixes and other enhancements

수정 사항 및 기타 향상

This release does not contain bug fixes or breaking API changes. The focus is solely on enhancing resource management for OCR scenarios.

이번 릴리스에는 버그 수정이나 파괴적인 API 변경이 없습니다. 초점은 OCR 시나리오를 위한 리소스 관리 향상에만 맞춰져 있습니다.

How to get the update

업데이트 받는 방법

Resources

리소스