Skip to content

Automatic WebP format CDN delivery based on visitors browsers

One of the hardest optimization goals when showing images to your website (and mobile application’s) visitors, is to minimize the image file size while maintaining high enough display quality.
 
Smaller image file sizes directly translate to faster load times, reduced bandwidth costs and improved user browsing experience. But small file sizes directly translate to lower image quality and may harm visitor satisfaction. Maintaining just the right balance is both crucial and hard.
 
As a result, it’s quite rare to find a solution that reduces image file sizes without sacrificing image quality. Fortunately, this is exactly the case with Google’s WebP file format.
 
WebP is a powerful image format that was first introduced by Google in 2010. Using advanced compression techniques, the WebP format encodes photos using files significantly smaller than the popular JPEG (lossy) and PNG (lossless) image formats.
 
But if it’s such an amazing image format, why don’t we see it in every website out there? The main setback to a widespread WebP file format adoption is that it’s not (yet) widely supported by even the most modern web browsers. 
 
While Google’s popular Chrome web browser and the Opera browser natively support WebP, Firefox and Internet Explorer do not. As a result, supporting WebP requires messing around with dynamically deciding whether to deliver WebP file format or JPG/PNG images according to the browser used by each of your visitors.
 
A few weeks ago we introduced Cloudinary’s support for the WebP format: How to support WebP images, save bandwidth and improve user performance. In that article, we described how you can set Cloudinary’s jQuery plugin to check whether the browser supports WebP, and if so, tell Cloudinary to dynamically generate and deliver WebP files instead of standard JPG/PNG ones.
 
While the jQuery lazy-loading client-side approach has its advantages, it could have been much simpler if this entire logic was handled transparently for you on the server side. This is exactly what we’ve been working on in the past few weeks.
 
In this blog post we wanted to introduce Cloudinary’s seamless support for dynamic delivery of WebP images.
 
Cloudinary can now identify when an image URL was requested by a browser that supports WebP. In such a case, Cloudinary will automatically convert your image, on-the-fly, to the WebP file format and deliver it cached and optimized through Akamai’s CDN
 
To leverage this capability, and tell Cloudinary to automatically use WebP when applicable, all you need to do is add ‘f_auto‘ (Format = Auto) to Cloudinary’s smart delivery URLs.
 
Below you can see two sample images. The image on the left uses a URL without Cloudinary’s new ‘f_auto’ flag and is therefore delivered in JPG format across all browsers (while being scaled on-the-fly to 300px width with its aspect ratio retained). The image on the right includes ‘f_auto’ in its delivery URL and so delivered as WebP if you are using Google Chrome. The resulting WebP image weighs only 6.9KB, which is 60% smaller than its counterpart JPEG version delivered to our Firefox, Safari and IE visitors.
 
https://res.cloudinary.com/demo/image/upload/w_300,f_auto/nice_beach.jpg
 

 JPG Image    WebP Automatic Image 

                              16.9KB JPG                                            6.9KB WebP (or 16.9KB JPG)
  
 
That’s it. This little addition is all you need for your web application to load faster and save significant bandwidth costs. This is especially true if your website caters to “techies” that statistically use Chrome much more than others 🙂
 
Notes:
  • ‘f_auto’ is only supported for Cloudinary users that use our Akamai CDN delivery. It is currently not supported for users with a dedicated CloudFront distribution.
  • For our transparent WebP support to work, the delivery URL has to explicitly include ‘f_auto’. Therefore, you can’t set the fetch format to ‘auto’ inside of a named transformation. Instead, you can use a named transformation while chaining ‘f_auto’ to the URL.
 
Cloudinary’s client integration libraries already support the new ‘f_auto’  feature. Here are a few examples of how to generate such URLs in your favorite development framework:
 
Ruby on Rails:
<%= cl_image_tag("sample.jpg", :width => 300, :crop => :scale, :fetch_format => :auto) %>
 
PHP:
<?php echo cl_image_tag("sample.jpg",
        array("width" => 300, "crop" => "scale", "fetch_format" => "auto")); ?>
 
Python & Django:
cloudinary.CloudinaryImage("sample.jpg").image(width=300, 
   crop="scale", fetch_format="auto")
 
Node.js:
cloudinary.image("sample.jpg", { width: 100, crop: "scale", fetch_format: "auto" })
.Net:
cloudinary.Api.UrlImgUp.Transform(
  new Transformation().Width(300).Height(130).Crop("scale").FetchFormat("auto")).
    BuildImageTag("sample.jpg");
 
Java & Android:
cloudinary.url().transformation(
  new Transformation().width(300).crop("fill").fetchFormat('auto')).
    generate("sample.jpg"); 
So far our examples focused on WebP support for images that were uploaded to Cloudinary first, either using our upload API from your server code or directly from your visitor’s browsers. 
 
In addition to direct uploads, Cloudinary also supports fetching images via their public URLs, transforming these on-the-fly and delivering the resulting images optimized via a CDN (see this blog post for more details). 
 
This means, for example, that you can easily integrate Cloudinary with your website without modifying your infrastructure and code. Simply prefix your image URLs with Cloudinary’s fetch URL.
 
With Cloudinary’s new WebP support, you can now set the fetch format to ‘auto‘ to dynamically convert images to the WebP format when applicable and improve your site’s performance.
 
For example, the following URL delivers a picture of Usain Bolt from a remote Wikimedia Commons HTTP URL. The remote image is fetched by Cloudinary, stored persistently in the cloud, dynamically converted to WebP where supported and delivered optimized and cached through a high-end CDN. 
 
https://res.cloudinary.com/demo/image/fetch/f_auto/
http://upload.wikimedia.org/wikipedia/commons/1/13/Usain_Bolt_16082009_Berlin.JPG
 

Usain Bolt - Fetch - WebP

 
 
Notice that WebP reduced the size of the image above by 50% from 33.6KB to 16.8KB without affecting the display quality in a visible way.
 
You can dynamically apply any of Cloudinary’s image transformations on the fetched image. The following example crops the image to a square, makes it lighter in color and rounds its corners:
 
https://res.cloudinary.com/demo/image/fetch/w_160,h_160,c_fill,e_fill_light:0,r_30,f_auto/
http://upload.wikimedia.org/wikipedia/commons/1/13/Usain_Bolt_16082009_Berlin.JPG
 
Usain Bolt - Fetch - WebP with effects
The WebP file format is a highly effective way to optimize your sites and apps. With Cloudinary’s WebP support, we hope we’ve made the WebP conversion and delivery process so simple its a no brainer to use, with nearly zero technical effort on your R&D and IT side.
 
Automatic WebP conversion and CDN delivery of WebP images is now available for all of our free and paid plans. 
 
It would be great if you try it out and let us know what you think. Any feedback or suggestion would be highly appreciated!
 
Back to top

Featured Post