Julio
Julio

Reputation: 6368

Parse text from a screen grab

Not sure the best way to explain this but i'll give it a shot. I'm trying to find a way to parse text/numbers from a screen grab in either C# or Java - whichever provides the easiest way, but preferably java.

An example would be as follows. You have a website/document/application with a block of text. You can take a screenshot of the specific area which contains this text. Once the screenshot has been taken you can extract a string from it containing the relevant characters.

Any feedback is appreciated. Thanks

Upvotes: 3

Views: 6025

Answers (3)

pymendoza
pymendoza

Reputation: 358

FreeOCR is best out of all the OCRs I've tried.

Upvotes: 1

Ray Kinsella
Ray Kinsella

Reputation: 31

If you are taking a screenshot it will be saved into an image file. You can use OCR image tools to break it down into text, but it's not 100% always in the conversion. Parsing text and/or numbers is just basic code in C# or Java.

Upvotes: 1

Related Questions