Skip to content

bcolaco/onMRZ

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OnMRZ

This is a library that parses a machine readable zone (MRZ) found in Machine readable Documents for instance (Passport). It parses PassportNumber, FirstName, LastName, dates (ex.date of birth, expire date), nationality and issuing country.

It can also generate the MRZ string itslef (Machine Readable Zone) if all the proper parameters are passed to it.

image

Usage

Parsing MRZ

var data = MrzParser.Parse("PMUSARAMBO<<JOHN<<<<<<<<<<<<<<<<<<<<<<<<<<<<12345678<8USA5001013M3001019<<<<<<<<<<<<<<04");
Console.WriteLine(data.FirstName);
Console.WriteLine(data.LastName);
// Output:
// JOHN
// RAMBO

Creating MRZ

var data = new MrzData
{
    DocumentType = "PM",
    IssuingCountryIso = "USA",
    FirstName = "JOHN",
    LastName = "RAMBO",
    DocumentNumber = "12345678",
    NationalityIso = "USA",
    DateOfBirth = new DateTime(1950, 1, 1),
    Gender = "M",
    ExpireDate = new DateTime(2030, 1, 1),
}
var mrz = MrzParser.CreatMrz(data);
Console.WriteLine(mrz);
// Output:
// PMUSARAMBO<<JOHN<<<<<<<<<<<<<<<<<<<<<<<<<<<<12345678<8USA5001013M3001019<<<<<<<<<<<<<<04

About

Machine readable zone parser for Machine Readable Documents

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • C# 100.0%