I have some JPEG files which contain text, but I want to edit some information on it. So I want to convert them in DOC format. How can I do this without downloading any software.

link|improve this question
This does relate to computer software... – Hello71 Jul 20 '10 at 16:52
feedback

migrated from stackoverflow.com Jul 13 '10 at 4:48

This question came from our site for professional and enthusiast programmers.

closed as off topic by Sathya, random Jul 14 '10 at 0:37

Questions on Super User are expected to generally relate to computer software or computer hardware, within the scope defined in the faq.

2 Answers

JPEG files contain raster images (pixel data). This includes text (i.e. text is not stored as text but as pixels).

This means that in order to convert them to text (or MS Word format) you need to use OCR software. There are many such online services, e.g. see http://www.onlineocr.net/ (first google hit).

link|improve this answer
feedback

Tesseract OCR is something I have used in the past. It worked pretty well for some things but for others it outright failed. ymmv.

http://code.google.com/p/tesseract-ocr/

link|improve this answer
I think this is what the new Google Docs facility to scan for text in PDF documents is based on, if you wanted a really long round trip you could convert the JPEG to PDF and then upload it to Google Docs! Waits for the downvote due to this being a stupid comment... – Richard Jul 13 '10 at 8:49
@Richard - You can't downvote comments. – Fake Name Jul 14 '10 at 0:12
@Richard, interesting. Might be true considering google developed Tesseract. – Javed Ahamed Jul 14 '10 at 6:44
feedback