Hello Lovely scar community!
I am trying to use the ocr functionality of scar, but for some reason I can't get it to work. I type the text 'what' in word with verdana font size 22 and not bold etc.. But SCAR says it cannot find it and returns 'FAIL'.
Does somebody know why this is and what I'm doing wrong?
Any help is hugely appreciated.
program OCR;varx,y,c : Integer;Found:Boolean;beginc := LoadCharsFromFont2('Verdana', 22, False, False, False, False); Found:= IsTextInAreaEx(0, 0, 1300,700, x, y, 'what', 5, c, True, True, 0, 0, -1) if (Found=True)thenWriteLn('Found');if (Found=False)thenWriteLn('FAIL');end.