Dissimilis.MrzScanner 1.2.1

dotnet add package Dissimilis.MrzScanner --version 1.2.1
                    
NuGet\Install-Package Dissimilis.MrzScanner -Version 1.2.1
                    
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="Dissimilis.MrzScanner" Version="1.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dissimilis.MrzScanner" Version="1.2.1" />
                    
Directory.Packages.props
<PackageReference Include="Dissimilis.MrzScanner" />
                    
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 Dissimilis.MrzScanner --version 1.2.1
                    
#r "nuget: Dissimilis.MrzScanner, 1.2.1"
                    
#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 Dissimilis.MrzScanner@1.2.1
                    
#: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=Dissimilis.MrzScanner&version=1.2.1
                    
Install as a Cake Addin
#tool nuget:?package=Dissimilis.MrzScanner&version=1.2.1
                    
Install as a Cake Tool

Dissimilis.MrzScanner

A C# library that reads the machine readable zone of passports, ID cards and visas from photos. Everything is managed code, including the OCR: no native binaries, no ML runtime, one small dependency for image decoding. Give it a JPEG, get back parsed fields with every ICAO 9303 check digit verified.

NuGet NuGet Downloads CI License Buy Me A Coffee

Detected MRZ on a specimen document

The image above is the library's own detection output on a synthetic specimen (the Anna Maria Eriksson example from the ICAO 9303 spec). No real documents appear in this repository.

Install

dotnet add package Dissimilis.MrzScanner

Targets netstandard2.0 and net8.0.

Reading a photo

using Dissimilis.MrzScanner;

MrzResult result = await MrzScanner.Default.ReadAsync("passport.jpg");

if (result.IsValid)
{
    var doc = result.Document!;
    Console.WriteLine($"{doc.DocumentNumber} {doc.PrimaryIdentifier}, born {doc.BirthDate}");
}
else
{
    foreach (MrzIssue issue in result.Issues)
        Console.WriteLine(issue);
}

Read/ReadAsync accept a file path, byte array, stream, or raw pixels via MrzImage if you decode images yourself. Bad input never throws; you get a result explaining what went wrong.

The result carries more than the fields:

  • IsValid is true only when every present check digit verified.
  • Confidence estimates the fraction of characters read correctly, calibrated on labeled documents. FieldConfidence breaks that down per field, so you can trust the checksum-backed document number while re-checking a shaky name.
  • Region tells you where the MRZ sits in the image and how the image needs to be rotated to bring it upright. Sideways and upside-down photos are handled.
  • Raw has the exact recognized characters for auditing.

Scanning with a camera

Single frames from a phone camera are often half readable: motion blur in one, glare in the next. MrzVideoSession folds frames together, voting per character, so the combined read can be valid even when no single frame was.

Camera previews arrive as YUV, and for MRZ reading only the luma plane matters, so you can hand the buffer over as is. No JPEG round trip, no color conversion:

var session = new MrzVideoSession();

void OnPreviewFrame(byte[] nv21, int width, int height)
{
    session.Feed(MrzImage.FromNv21(nv21, width, height));
    if (session.IsStable)
        Show(session.Best!.Document!);
    else
        ShowGuidance(session.LastFrameHints);
}

FromNv12 and FromI420 cover the other common camera layouts, and FromGrayscale8/FromBgra32 and friends take decoded buffers. Camera buffers usually arrive in sensor orientation; pass the rotation the camera reports and the reader handles it: MrzImage.FromNv21(buffer, width, height, 0, rotationDegrees). IsStable turns true once the result is fully valid and corroborated by more than one frame. Call Reset() between documents.

LastFrameHints says what to fix when a frame did not read: TooSmall means move closer, CutOff means the band touches the frame edge, plus Blurry, Glare, LowContrast and NoMrzDetected. The same hints appear on MrzResult.CaptureHints for still photos. A frame with a clean MRZ typically reads in under 100 ms; a frame without one returns quickly so the next frame gets its turn.

If you want a viewfinder overlay before committing to a full read, LocateMrz finds MRZ-shaped bands in a few milliseconds without recognizing characters:

foreach (MrzRegion region in reader.LocateMrz(frame))
    DrawOverlay(region.Left, region.Top, region.Width, region.Height);

Options

// Stills: exhaustive search (default). Video: bounded per-frame cost.
var reader = new MrzScanner(new MrzScannerOptions
{
    MaxImageDimension = 2000,
    SearchEffort = MrzSearchEffort.SingleFrame,
});

// Text you already have, no image involved.
MrzResult parsed = MrzParser.ParseText("P<UTOERIKSSON<<ANNA<MARIA...");

How it works

The locator finds bands of dense, monospaced text by their edge profile. Candidate bands are segmented into character cells on the OCR-B pitch and matched against glyph templates; competing grid placements are judged by how well the templates actually fit. Uncertain characters are then resolved by the MRZ's own structure: check digits, character classes per position, and date plausibility arbitrate between close candidates. All formats from ICAO 9303 are supported: TD1, TD2, TD3, MRV-A and MRV-B.

Limits

The recognizer only knows the 37-character MRZ alphabet in OCR-B; it is not a general OCR. Glyphs below roughly 6 px of pitch are at the edge of what template matching can do. Tilt up to about 8 degrees is detected and corrected automatically, on top of the 90/180/270 degree orientations; extreme perspective is not. Chip reading and the visual inspection zone are out of scope.

License

MIT

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 was computed.  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 was computed.  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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.1 94 8/8/2026
1.2.0 87 8/7/2026
1.1.0 90 8/7/2026
1.0.2 87 8/7/2026
1.0.1 102 8/7/2026
1.0.0 90 8/7/2026

Hardening: video sessions requiring more than 16 stable frames can now reach stability through fusion; passing a rotation in the stride slot produces an instructive error; unknown pixel layouts throw instead of reading as black; small robustness guards in the tilt estimator and capture hints.