RecognizePdf

RecognizePdf(string, DocumentRecognitionSettings)

Recognize text from scanned pdf (extract images). Recognizes pdf file with the ability to specify DocumentRecognitionSettings. Supports Scanned PDF only. Doesn’t supports Searchable PDF.

public List<RecognitionResult> RecognizePdf(string fullPath, DocumentRecognitionSettings settings)
ParameterTypeDescription
fullPathStringFull path to the image.
settingsDocumentRecognitionSettingsRecognition settings.

Return Value

The RecognitionResult object with image recognition results.

See Also


RecognizePdf(MemoryStream, DocumentRecognitionSettings)

Recognize text from scanned pdf (extract images). Recognizes pdf file with the ability to specify RecognitionSettings. Supports Scanned PDF only. Doesn’t supports Searchable PDF.

public List<RecognitionResult> RecognizePdf(MemoryStream stream, 
    DocumentRecognitionSettings settings)
ParameterTypeDescription
streamMemoryStreamMemory stream with the pdf file.
settingsDocumentRecognitionSettingsRecognition settings.

Return Value

The RecognitionResult object with image recognition results.

See Also