user3640168
user3640168

Reputation: 11

How to highlight text using ABBYY Cloud OCR SDK

I am using trial version of ABBYY Cloud OCR SDK for doing OCR of scanned images in asp.net application. I want to know how I can highlight text in output.

Upvotes: 1

Views: 302

Answers (1)

Anastasia Galimova
Anastasia Galimova

Reputation: 68

You can get the coordinates of each word using export to xml and highlight the text using its coordinates on your side.

You can set the following parameters of the processImage method to make to disable any deskew (so the coordinates on the source images will be the same as in the exported PDF):

• imageSource=scanner

• correctSkew=false

Upvotes: 3

Related Questions