Tesseract OCR in C#
- Use Tesseract to read text in C#
- Supports VB.NET using Tesseract for .NET
- Learn how to use the Tesseract Tutorial
Or download the DLL directly here
Images to Text with OCR
See All Code Examplesusing IronOcr;
var ocr = new IronTesseract();
using var input = new OcrInput();
input.LoadImage("attachment.png");
input.LoadPdf("report.pdf");
OcrResult result = ocr.Read(input);
string text = result.Text;
Dim ocr = New IronTesseract()
Using input = New OcrInput()
input.LoadImage("attachment.png")
input.LoadPdf("report.pdf")
Dim result As OcrResult = ocr.Read(input)
Dim text As String = result.Text
End Using