GroupDocs.Parser for .NET 26.3 is now available. This release adds OCR support for Arabic and Korean languages, with all required resources bundled inside the DLL.

What’s new in this release

Key Category Summary
PARSERNET-2843 Improvement Implement support for Arabic and Korean languages ​​when using OCR

Public API changes

None.

Code example

// Create an instance of Parser class
using (Parser parser = new Parser(documentPath))
{
    OcrOptions ocrOptions = new OcrOptions()
    {
        Language = Language.Kor
    };
    TextOptions options = new TextOptions(false, true, ocrOptions);
    TextReader result = parser.GetText(options);
    string text = result.ReadToEnd();
    Console.WriteLine(text);
}

How to get the update

  • NuGet – Upgrade to the latest GroupDocs.Parser package via NuGet:

    NuGet\Install-Package GroupDocs.Parser -Version 26.3.0
    
    NuGet\Install-Package GroupDocs.Parser.NETFramework -Version 26.3.0
    
  • Direct Download – Download the assemblies for .NET from the GroupDocs.Parser for .NET 26.3 page on the GroupDocs releases site:

https://releases.groupdocs.com/parser/net/new-releases/groupdocs.parser-for-.net-26.3-dlls-only/ https://releases.groupdocs.com/parser/net/new-releases/groupdocs.parser-for-.net--26.3/

Resources