I am trying to extract text from image (screenshot) but its not able to extract complete text. below is the code which i am using.
Code
OcrInput source = new OcrInput(InputType.SingleImage);
source.Add(filePath);
var settings = new RecognitionSettings
{
Language = Aspose.OCR.Language.Eng,
RecognizeSingleLine = false
};
List<RecognitionResult> results = api.Recognize(source);
results[0].Save(@"test.txt", Aspose.OCR.SaveFormat.Text);
extracted text does not read all lines. but where as your online tolls does it perfectly. Can you please check if i am missing something?
Thanx