PDF OCR for C#
- Extends PDF capabilities of Tesseract for C#
- Read text & barcode (OCR) PDFs in C#
- Supports C# and VB.NET
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