OfficeIMO.Ocr 3.4.0

Prefix Reserved
dotnet add package OfficeIMO.Ocr --version 3.4.0
                    
NuGet\Install-Package OfficeIMO.Ocr -Version 3.4.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OfficeIMO.Ocr" Version="3.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OfficeIMO.Ocr" Version="3.4.0" />
                    
Directory.Packages.props
<PackageReference Include="OfficeIMO.Ocr" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OfficeIMO.Ocr --version 3.4.0
                    
#r "nuget: OfficeIMO.Ocr, 3.4.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package OfficeIMO.Ocr@3.4.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OfficeIMO.Ocr&version=3.4.0
                    
Install as a Cake Addin
#tool nuget:?package=OfficeIMO.Ocr&version=3.4.0
                    
Install as a Cake Tool

OfficeIMO.Ocr - shared OCR contracts

nuget version

OfficeIMO.Ocr is the dependency-light contract between image-producing applications, document-format integrations, and OCR providers. It contains no document parser, network client, native runtime, or process runner.

Install

dotnet add package OfficeIMO.Ocr

Use a custom or hosted recognizer

Implement IOcrEngine, or adapt an existing SDK with DelegateOcrEngine:

using OfficeIMO.Ocr;

IOcrEngine engine = new DelegateOcrEngine(
    "custom-provider",
    async (request, cancellationToken) => {
        HostedRecognition response = await client.RecognizeAsync(
            request.Payload,
            request.MediaType,
            request.Language,
            cancellationToken);

        return new OcrResult {
            Text = response.Text,
            Confidence = response.Confidence,
            Provider = "custom-provider",
            Spans = response.Words.Select((word, index) => new OcrTextSpan {
                Sequence = index,
                Level = OcrTextSpanLevel.Word,
                Text = word.Text,
                Confidence = word.Confidence,
                Region = new OcrRegion {
                    X = word.Left,
                    Y = word.Top,
                    Width = word.Width,
                    Height = word.Height
                },
                CoordinateUnit = OcrCoordinateUnit.Pixels
            }).ToArray()
        };
    },
    new OcrEngineCapabilities {
        SupportedMediaTypes = new[] { "image/png", "image/jpeg" },
        SupportsWordSpans = true,
        SupportsConfidence = true,
        SupportsConcurrentRequests = true
    });

Each request carries one validated raster payload plus optional source, candidate, page, region, language, and provider metadata. Results can return plain text, normalized confidence, provider/model provenance, diagnostics, and line, word, or character spans. Span geometry is explicit: pixels, PDF-style points, or normalized 0..1 coordinates. A provider should preserve its logical sequence and hierarchy instead of deriving structure from language-specific words.

The host or format integration owns input validation, returned-output limits, retry policy, and how recognized evidence is merged into a document. OcrEngineRunner.RecognizeAsync applies a total timeout and serializes every caller that shares an engine whose SupportsConcurrentRequests capability is false. For a multi-candidate document operation, call OcrEngineRunner.CreateExecution(engine) once and reuse the returned OcrEngineExecution; it captures one validated identity and capability snapshot so provider properties cannot change provenance or concurrency behavior between candidates. If a timed-out provider ignores cancellation, or its cancellation callback is still running, the runner keeps that engine's gate until all provider-owned work settles. Reader, PDF, and future format integrations use this shared runner rather than creating incompatible concurrency rules.

An engine should still honor cancellation and accurately advertise whether the same instance accepts concurrent calls. Applications invoking IOcrEngine.RecognizeAsync directly opt out of the shared runner policy. Engine identifiers are stable, non-empty provenance values and are limited to 256 untrimmed characters.

Discover optional providers

Hosts that offer selectable OCR can register provider factories in an explicit OcrEngineCatalog. The catalog performs no ambient assembly scanning and the core package still carries no provider runtime:

var catalog = new OcrEngineCatalog()
    .Register(new MyOcrEngineProvider());

foreach (OcrEngineDescriptor provider in catalog.Discover()) {
    Console.WriteLine($"{provider.Id}: {provider.DisplayName}");
}

IOcrEngine engine = catalog.Create(
    "my-provider",
    new Dictionary<string, string> { ["model"] = "document" });

Provider identifiers are case-insensitive and unique. Registration snapshots identity and capabilities, while engine creation snapshots at most 128 scalar options with a 64 KiB aggregate character limit. Secrets remain host-owned: pass an environment-variable or secret-store reference understood by the provider instead of serializing a credential into a recipe or evidence file.

Integrations and providers

  • OfficeIMO.Reader.Ocr recognizes image candidates from Word, Excel, PowerPoint, OneNote, EPUB, email, PDF, and other Reader adapters.
  • OfficeIMO.Pdf.Ocr renders PDF pages, filters OCR/native overlap, reconstructs the logical document, and can add a searchable text layer.
  • OfficeIMO.Ocr.Process adapts a caller-configured executable through a bounded versioned protocol.
  • OfficeIMO.Ocr.Tesseract supplies an optional engine for an installed Tesseract CLI.

All integrations accept the same IOcrEngine; providers do not reference Reader, PDF, or another document format.

Targets and license

  • Targets: netstandard2.0, net8.0, net10.0 (net472 is also included on Windows builds).
  • Dependencies: none.
  • License: MIT.

See the complete OfficeIMO package map for related formats and conversion paths.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.7.2

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on OfficeIMO.Ocr:

Package Downloads
OfficeIMO.Reader.Ocr

Optional OCR execution and enrichment for normalized OfficeIMO.Reader documents.

OfficeIMO.Pdf.Ocr

Optional OCR rendering, native-text merge, and searchable output for OfficeIMO.Pdf.

OfficeIMO.Ocr.Process

Optional process-protocol provider for the engine-neutral OfficeIMO OCR contract.

OfficeIMO.Ocr.Tesseract

Optional Tesseract CLI provider for the engine-neutral OfficeIMO OCR contract.

OfficeIMO.Workflows

Typed local document workflows that compose first-party OfficeIMO conversion, PDF, and provenance capabilities.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.4.0 0 9/6/2026