No Filters Added
Select a file or drag and drop file straight from your desktop
or choose an example



1
// Create IronOcr Tesseract Instance2
IronTesseract tesseract = new ();
3
// Create an OcrInput object4
using (OcrInput input = new ())
5
{6
// Add a PDF page7
input.AddPdfPage("", 0, DPI: 200);
8
// Read and store OcrResults object9
OcrResult result = tesseract.Read(input);
10
string allText = result.Text;
11
// Print to console12
Console.WriteLine(allText);
13
}