I am referring to software based OCR ?Image to text engine conversion tools, stackoverflow has tons of posting on building OCR but I am looking opposite, like any guidance on how to protect my images from reverse engineering.
For example i have images containing only texts, how can i make it difficult for anyone to decode the data, is there any desired image format which can do this? or we can obfuscate images?
Can using special fonts or distortion guarantee OCR protection? though my requirement do not allow too much of distorted text being served.
Any direction will be very helpful
As I and others have said, making a large amount of text obscure enough that OCR can't read it will make it impractical for humans.
Is there a specific threat you're trying to beat? Simple web crawlers often don't execute javascript, so a dumb way to make your text harder to scrape would be to load it with an AJAX request and insert it into the DOM.
Or if you want to get more intense, you could have the text displayed in a Flash or Silverlight control -- still not OCR-proof, but that would make it non-trivial to automatically grab large amounts of text, particularly if you have a Flash scrollbar and/or pagination. (I should point out that Flash controls for something simple like text sounds annoying to use, won't be searchable or bookmarkable, and obviously won't work on the majority of mobile devices.)