Page
0
of 0
100%
200
72
96
200

Filters

Filters

Adjustments

Sharpen

Denoise

Dilate

Erode

Open

Close

Enhance

Colors

Binarize

Grayscale

Invert

Contrast

Alignments

Rotate

Deskew

Scale

No Filters Added

Select a file or drag and drop file straight from your desktop

or choose an example

Detected Text

JSON Output

OCR Read Results

Confidence:

0.00%

Code to Reproduce

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
}
An error has occurred. This application may no longer respond until reloaded. Reload 🗙