Skip to content

How to use OCR Text Recognition to automatically transform images

Websites of all kinds enhance user experience with images. In fact, images appear on almost every Web page. Some of the images are uploaded by users, some are proprietary, and some come from 3rd parties. Regardless of origin, many of these images include text elements, and sometimes you need to be aware of or handle that text.

For example, you might need to:

  • Blur or pixelate texts that you don’t want displayed on your website
  • Cover text in an uploaded image with another image
  • Have an automatic way to extract the text content so you can programmatically analyze it or perform operations based on the detected text. For example, you might want to make sure uploaded images do not contain too much text, or maybe you want to tag your images based on keywords detected in them.

These are common needs, but it’s a hassle to do these things manually, even for your own proprietary images, and not an option for images that are uploaded by your users for immediate display.

The good news: This article will show you how you can handle all these and other text detection scenarios, on-the-fly, with only one or a few lines of code. Here are a couple examples:

An outline overlay shows automatically detected text An outline overlay shows
automatically detected text
The pixelate effect hides detected text The pixelate effect hides
detected text

Here’s the code that builds the delivery URL for the right-hand (pixelated) image above:

Loading code examples

Stay tuned to learn how you can apply these same capabilities to your own site or app.

Extracting text from images programmatically is a technology that has existed at some level for many years and is usually referred to as OCR (Optical Character Recognition).

In recent years, advanced systems have been developed that are capable of producing a high degree of recognition accuracy for most fonts and languages. Although no system is 100% accurate, the better ones are getting close.

Text Detection and Extraction add-on At Cloudinary, our mission is to offer a comprehensive solution for all elements of image and media management, enabling web and app developers to invest their full focus on the main purpose of their own site, or app. That’s why we decided to offer our new [OCR Text Detection and Extraction add-on](https://cloudinary.com/addons), which streamlines our extensive image transformation capabilities with one of the most advanced and precise OCR text extraction engines: Google’s [Cloud Vision](https://cloud.google.com/vision/).

Suppose your website helps people find their next dream car. It’s a free service for the buyers of course. It’s also fair for the sellers who list all their cars for free, and pay a commission only if the car sells through your site. But some dealers forget to follow the website policy, and they list their direct phone number on the image. A problem? Not with the new OCR Text Recognition and Extraction add-on. Take a look at how easy it is to cover any embedded text in an uploaded image using a simple OCR transformation.

For example, the dynamic transformation URL (and corresponding SDK code) shown below performs OCR detection and adds an an image as an overlay on top of any detected text. Everything is done on-the-fly in the cloud by simply adding 2 parameters to the code that builds the URL:

  • Set the overlay parameter to the quikcar_logo image (l_quikcar_logo in the URL)
  • Set the gravity (location for the overlay) to ocr_text (g_ocr_text in the URL)

Loading code examples

Original image with out text overlay Originally uploaded image Image that is immediately displayed on your site with your logo covering the detected text Image that is immediately displayed on your site with logo overlay
_Photo Credit: [Sawinery.net](https://www.sawinery.net/)_

You maintain a blog where you and other users post regularly. To enhance engagement, you make sure to embed lots of interesting images in every article. You don’t want anybody to think that your posts are commercially biased, but these days, (almost) everything is branded. Using Cloudinary’s OCR add-on, it again takes just one line of SDK code (or a manually built URL) with a few parameters to blur out that brand name.

In this case, we take advantage of the blur_region effect at its top blurring strength (2000), and again use that ocr_text gravity so that all detected text regions are blurred:

Loading code examples

Original, unblurred image Original, unblurred image Blurred brand name text Blurred brand name text

Say that your website is based on user generated content and your income is based on click-through rates. Your users are of-course also interested in maximizing views of their posts. It is a known and proven fact that images catch the eyes of users and increase engagement. But it’s also known that images containing significant amounts of text are less engaging and may harm the overall experience. For example, Facebook limits the exposure of ads that are text-heavy.

Luckily, you can help your users to avoid uploading images with excessive text content by using the OCR add-on to analyze the percentage of an image that contains text.

When you include the ocr parameter in your upload command, the JSON response includes all of the detected text and the exact bounding boxes coordinates of each word or text element. Combining this data with some simple math, you can write some simple code to:

  • Allow images with less than 15% to be uploaded freely.
  • Provide a warning for images with 15%-30% text, recommending that they use a less text-heavy image, but still allow them to continue if they choose.
  • Reject images with more than 30% text.

Here’s a look at an excerpt from an upload response showing the bounding box of an individual text element extracted from an image:

              {
                "boundingPoly": {
                  "vertices": [
                    {
                      "y": 22,
                      "x": 760
                    },
                    {
                      "y": 22,
                      "x": 1039
                    },
                    {
                      "y": 90,
                      "x": 1039
                    },
                    {
                      "y": 90,
                      "x": 760
                    }
                  ]
                },
                "description": "Imagine"
              },
              {
                "boundingPoly": {
                  …
                  …
                  …
Code language: JavaScript (javascript)

And here’s some simple sample code (using Ruby on Rails) that accomplishes the text percentage validation described above by calculating the space taken by each of the individual bounding boxes of all text detected in an image:

if result['info']['ocr']['adv_ocr']['status'] == 'complete'
  data = result['info']['ocr']['adv_ocr']['data']
  boxes = data.first["textAnnotations"][1..-1].map{|poly| poly["boundingPoly"]
       ["vertices"]}.map{|vertices| vertices.values_at(0,2)}
  areas = boxes.map{|box| (box.first["x"]-box.second["x"])
       .abs * (box.first["y"]-box.second["y"]).abs}
  total_areas = areas.sum
  coverage = total_areas.to_f / (result["width"] * result["height"]) * 100

puts case
  when coverage < 15
    "Only #{coverage.round(2)}% of your image contains text. 
        This is a valid image!"
  when coverage < 30
    "#{coverage.round(2)}% of your image contains text. For better engagement, 
        it is recommended to upload an image with less text."
  else
    "We're sorry. #{coverage.round(2)}% of your image contains text. 
        Please use another image."
  end
end
Code language: PHP (php)

If a customer uploaded the first image below, the above code would return 12.54% and thus would be allowed to continue, the second image would return ~16%, and thus would receive a warning, but the third image would return nearly 35%, and would be (politely) rejected.

extracted text found in 12.54% of image 12.54% text extracted text found in 16.36% of image 16.36% text extracted text found in 34.87% of image 34.87% text

In this article, we’ve demonstrated a few ways you can use the OCR Text Recognition and Extraction add-on to automatically blur, pixelate, overlay, and extract text from your images.

Want to know more? For a deeper look at the add-on’s abilities and additional use-case scenarios with sample code, have a look at the add-on documentation.

Ready to give it a try? If you aren’t already a Cloudinary customer, you are welcome to sign up for a free account and try the add-on along with the rest of the Cloudinary features.

Have some great ideas for how to make use of the OCR Text Detection and Extraction add-on in your site or app? We’d be happy to hear what you think and appreciate any feedback.

Back to top

Featured Post