Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i.e. for an image that OCR is performed, i want to be able to fetch the list of text on the image. Is this possible using the SDK? If so how, and if not are there any suggestions as to using google's OCR to fetch words in an image.

share|improve this question

1 Answer

up vote 28 down vote accepted

When you create a file or copy it with the Drive API, you can perform OCR on it to convert it to a Google Document which will contain the OCR text. The relevant parameters are:

  • ocr boolean Whether to attempt OCR on .jpg, .png, or .gif uploads.
  • ocrLanguage string If ocr is true, hints at the language to use. Valid values are ISO 639-1 codes.
share|improve this answer
This answer seems incomplete; I see from the SDK docs that I can upload a file and have it ocr'd on Drive, but I don't see any property of the file response that contains the resulting text. Is there another step (i.e. query the GDoc created in the OCR request - but that's not text?) or am I not seeing the correct property in file response? – Patrick Haggood Nov 29 '12 at 19:06
For what Ali described, it requires setting covert=true in the query parameters when uploading the file. That will create a doc with the image and extracted text. There is no way to extract the text for unconverted images. – Steve Bazyl Apr 5 at 17:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.