RecognizeTiff

RecognizeTiff(string, DocumentRecognitionSettings)

Recognize text from multi-page TIFF image. Recognizes TIFF file with the ability to specify DocumentRecognitionSettings. Supports TIFF (TIF) only. Doesn’t supports other image types.

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

Return Value

The RecognitionResult list of objects with image recognition results.

See Also


RecognizeTiff(MemoryStream, DocumentRecognitionSettings)

Recognize text from multi-page TIFF image. Recognizes TIFF file with the ability to specify DocumentRecognitionSettings. Supports TIFF (TIF) only. Doesn’t supports other image types.

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

Return Value

The RecognitionResult list of objects with image recognition results.

See Also