Computer vision features for IronOCR, an advanced OCR (Optical Character Recognition) library for C# and .NET
IronOCR is a library developed and maintained by Iron Software that helps C# Software Engineers to perform Optical Character Recognition, Barcode Scanning, and Text Extraction in projects in .NET.
Additionally, our API reference and full licensing information can easily be found on our website.
Installing the IronOCR NuGet package is quick and easy, please install the package like this:
PM> Install-Package IronOCR
Once installed, you can get started by adding using IronOcr to the top of your C# code. Here is is sample image text scan reading example to get started:
using IronOcr;
var Ocr = new IronTesseract();
using (var Input = new OcrInput("image.png"))
{
// Input.Deskew(); // use if image not straight
// Input.DeNoise(); // use if image contains digital noise
var Result = Ocr.Read(Input);
Console.WriteLine(Result.Text);
}
Welcome to the cutting edge of .NET OCR technology with IronOCR 2022 with full support for:
For code examples, tutorials and documentation visit https://ironsoftware.com/csharp/ocr/
For more support and inquiries, please email us at: developers@ironsoftware.com