Cloudinary Blog

Website screenshot creation and manipulation with URL2PNG and Cloudinary

Online website screenshots with URL2PNG and Cloudinary
Thumbnails of website screenshots are a common visual design element. Search engines, such as Google, display webpage screenshots in their search results. Social news sites, such as DZone, embed screenshot thumbnails of shared pages. Bloggers and technology news sites embed screenshots of company websites and online services they discuss in their posts. Development companies embed screenshots of websites they helped develop.
 
Embedding a screenshot in your website is quite a hassle. You’ll need to install a screen capture solution, browse to the web page in question, capture the relevant screen part, open the screenshot image in a graphic editor such as Photoshop, resize and crop the image, add borders and shadows, add arrows and other notation elements, save the resulting image file, upload the image to your CMS and embed it in the relevant HTML code.
 
While manually creating a screenshot is somewhat time consuming, the challenges involved in dynamically generating perfect screenshots for many web pages are much more significant.
 
In this blog post we wanted to explain how you can use Cloudinary with its new URL2PNG add-on to dynamically generate screenshots of any website. You can use Cloudinary's rich set of cloud-based image manipulation capabilities to resize the screenshot, crop it, transform it using various filters and effects and seamlessly deliver the screenshot thumbnails to your users via a fast CDN.
 
Screenshot generation using Cloudinary’s URL2PNG add-on are performed synchronously. This should dramatically simplify the process of adding screenshot thumbnails to your website as you're not required to display a placeholder until a screenshot is fully generated.
 
URL2PNG Add-on

Screenshot creation 

Screenshots creation with URL2PNG is done using Cloudinary's manipulation and delivery URLs. You need to set the image type to 'url2png' and specify the URL of the remote website. To ensure that your Cloudinary account only captures screenshots of allowed URLs, you should either use Cloudinary's explicit authenticated API or sign the dynamic URL with the API Secret of your Cloudinary account.
 
For example, the following URL captures a screenshot of 'https://cloudinary.com' on-the-fly, stores the generated image in the cloud and delivered it optimized and cached via a CDN. You can see a scaled down sample of the generated screenshot image below.
 
 
Screenshot sample
 
 
You can generate such URLs, with or without their HTML image tags, using Cloudinary's client libraries for Ruby on Rails, Python & Django, PHP, Node.js, jQuery, Java, .NET, iOS, Android and Scala.
 
The following sample code embeds an HTML image tag with a dynamic screenshot creation URL:
 
Ruby on Rails:
Copy to clipboard
<%= cl_image_tag("https://cloudinary.com", :sign_url => true, :type => "url2png") %>
PHP:
Copy to clipboard
<?php echo cloudinary_url("https://cloudinary.com", 
  array("type" => "url2png", "sign_url" => true)); ?>
Python:
Copy to clipboard
cloudinary.CloudinaryImage("https://cloudinary.com", type = "url2png").build_url(
  sign_url = True)
Node.js:
Copy to clipboard
cloudinary.url("https://cloudinary.com", 
  { type: "url2png",
    sign_url: true });
You can also generate screenshot thumbnails of websites that require query strings (URL parameters). The example below captures a screenshot of 'http://www.bing.com/search?q=dogs'.  Cloudinary's client libraries automatically encodes the special characters to ensure a valid URL:
Copy to clipboard
<%= cl_image_tag("http://www.bing.com/search?q=dogs", 
                 :sign_url => true, :type => "url2png") %>
https://res.cloudinary.com/demo/image/url2png/s--OflFn9CX--/http://www.bing.com/search%3Fq=dogs
 
URL2PNG screenshot of Bind
 
 

Mobile website screenshots

Modern websites sometimes render pages differently when viewed on mobile devices. So far we've shown how you can capture website screenshots as viewed on a desktop machine. We'll now show how to capture screenshots of websites as displayed on mobile devices.
 
Any URL2PNG parameter can be specified when building Cloudinary URLs of URL2PNG screenshots. Parameters are prefixed with '/url2png/' and are of the format 'key1=value1|key2=value2'.
 
The following code sample returns a dynamic URL that generates a screenshot as displayed on an iPhone 5 device. The 'view_port' parameter is set to 640x1136, the user agent is set to the mobile Safari's user agent and we also request non full page capturing.
Copy to clipboard
<%= cl_image_tag("http://www.bing.com/search?q=dogs/url2png/viewport=640x1136|fullpage=false|user_agent=Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X; en-us) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53", 
                 :sign_url => true, :type => "url2png") %>
 
 
URL2PNG mobile screenshot of bind

Cropping

The graphic design of your web or mobile applications will most likely require screenshots of very explicit dimensions. Cloudinary's cloud-based image transformations can be applied on generated screenshots to get a perfect resize and crop.
 
In the example below, we embed a 500x300 cropped version of the much larger original screenshot. Note that we didn't need to sign the URL in this example because we already generated a screenshot of the 'https://cloudinary.com' homepage in the example above.
 
 
URL2PNG screenshot cropped to 300x500
 
The following Ruby on Rails code line generates an image tag with the URL above:
Copy to clipboard
<%= cl_image_tag("https://cloudinary.com", :type => "url2png", 
                 :width => 500, :height => 300, :crop => :fill, :gravity => :north) %>
Another example, this time generating a 200x200 square thumbnail of the top part of the same screenshot while converting the image to grayscale:
 
 
URL2PNG screenshot manipulated 
 
Same example in Java:
Copy to clipboard
cloudinary.url().type("url2png").transformation(
  new Transformation()
    .width(200).height(200).crop("fill").gravity("north").effect("grayscale"))
  .imageTag("https://cloudinary.com"));

Caption overlays 

When embedding screenshots, you may want to add an embedded caption with the site's name or URL. You can use Cloudinary's dynamic text overlays to add a text over the screenshot image. 
 
The dynamic URL below first creates a 500x300 cropped version of the screenshot with a border of 2 pixels. A semi transparent black overlay is then added at the bottom of the image. Finally, the 'https://cloudinary.com' white text label is added at the bottom of the page:
 
 
URL2PNG screenshot with overlay text
 
 
Same example in PHP:
Copy to clipboard
<?php echo cloudinary_url("https://cloudinary.com", 
  array(
    "transformation" => array(
      array("crop" => "fill", "gravity" => "north",
            "height" => 300, "width" => 300, "border" => "2px_solid_#222"),
      array("overlay" => "black_bar", "width" => 1.0, "height" => 0.1,
            "flags" => "relative", "gravity" => "south", "opacity" => 70),
      array("overlay" => "text:helv_bd_18_white:cloudinary.com",
            "gravity" => "south", "y" => 6)
    )
  )); ?>
Building a dynamic application? The same exact code and dynamic URL of the example above can be used for any web page by changing the origin URL both for the actual screenshot creation and for the text overlay. For example, here is the same method applied on the screenshot of 'http://url2png.com'.
 
 
URL2PNG screenshot with overlay text of site name
 

Advanced manipulations

As mentioned above, graphic designers and bloggers usually prefer to apply certain styling on embedded screenshots. For example, I prefer to round the corners of a screenshot image, add a gray border and a light shadow. 
 
As you can see in the example below, Cloudinary's cloud-based image transformations can be used to create such a result when applied on a screenshot dynamically created by the URL2PNG add-on. 
 
 
URL2PNG screenshot with border and shadow
 
One last example - another common practice is to mark and label certain elements of a screenshot. The following transformation URL, that can be easily generated using Cloudinary’s client libraries, adds an overlay blank image with a red border and a red text overlay.
 
 

Summary 

URL2PNG provides an easy and useful solution to online web pages screenshot generation. As a Cloudinary add-on, URL2PNG screenshots can be enhanced on-the-fly and their integration in your website or mobile application is further simplified.
 
You can try out the URL2PNG add-on by signing up to a Cloudinary account if you haven't done so already and subscribe to the free plan of the URL2PNG add-on.
 
Additional documentation and code samples are available here.

Recent Blog Posts

Generate Waveform Images from Audio with Cloudinary

This is a reposting of an article written by David Walsh. Check out his blog HERE!
I've been working a lot with visualizations lately, which is a far cry from your normal webpage element interaction coding; you need advanced geometry knowledge, render and performance knowledge, and much more. It's been a great learning experience but it can be challenging and isn't always an interest of all web developers. That's why we use apps and services specializing in complex tasks like Cloudinary: we need it done quickly and by a tool written by an expert.

Read more
Make All Images on Your Website Responsive in 3 Easy Steps

Images are crucial to website performance, but most still don't implement responsive images. It’s not just about fitting an image on the screen, but also making the the image size relatively rational to the device. The srcset and sizes options, which are your best hit are hard to implement. Cloudinary provides an easier way, which we will discuss in this article.

Read more

The Future of Audio and Video on the Web

By Prosper Otemuyiwa
The Future of Audio and Video on the Web

Web sites and platforms are becoming increasingly media-rich. Today, approximately 62 percent of internet traffic is made up of images, with audio and video constituting a growing percentage of the bytes.

Read more

Embed Images in Email Campaigns at Scale

By Sourav Kundu
Embed Images in Email Campaigns at Scale

tl;dr

Cloudinary is a powerful image hosting solution for email marketing campaigns of any size. With features such as advanced image optimization and on-the-fly image transformation, backed by a global CDN, Cloudinary provides the base for a seamless user experience in your email campaigns leading to increased conversion and performance.

Read more
Build the Back-End For Your Own Instagram-style App with Cloudinary

Github Repo

Managing media files (processing, storage and manipulation) is one of the biggest challenges we encounter as practical developers. These challenges include:

A great service called Cloudinary can help us overcome many of these challenges. Together with Cloudinary, let's work on solutions to these challenges and hopefully have a simpler mental model towards media management.

Read more

Build A Miniflix in 10 Minutes

By Prosper Otemuyiwa
Build A Miniflix in 10 Minutes

Developers are constantly faced with challenges of building complex products every single day. And there are constraints on the time needed to build out the features of these products.

Engineering and Product managers want to beat deadlines for projects daily. CEOs want to roll out new products as fast as possible. Entrepreneurs need their MVPs like yesterday. With this in mind, what should developers do?

Read more