No Filters Added
Select a file or drag and drop file straight from your desktop
or choose an example
1
// Create IronOcr Tesseract Instance
2
IronTesseract tesseract = new ();
3
// Create an OcrInput object
4
using (OcrInput input = new ())
5
{
6
// Add a PDF page
7
input.AddPdfPage("", 0, DPI: 200);
8
// Read and store OcrResults object
9
OcrResult result = tesseract.Read(input);
10
string allText = result.Text;
11
// Print to console
12
Console.WriteLine(allText);
13
}