Cloudinary Blog

Automatic WebP format CDN delivery based on visitors browsers

Using WebP File Format Selectively to Boost Site Speed

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.
 

Enabling automatic WebP delivery 

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.
 
 
 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.
 

Enabling WebP delivery programmatically 

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:
Copy to clipboard
<%= cl_image_tag("sample.jpg", :width => 300, :crop => :scale, :fetch_format => :auto) %>
 
PHP:
Copy to clipboard
<?php echo cl_image_tag("sample.jpg",
        array("width" => 300, "crop" => "scale", "fetch_format" => "auto")); ?>
 
Python & Django:
Copy to clipboard
cloudinary.CloudinaryImage("sample.jpg").image(width=300, 
   crop="scale", fetch_format="auto")
 
Node.js:
Copy to clipboard
cloudinary.image("sample.jpg", { width: 100, crop: "scale", fetch_format: "auto" })
.Net:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(
  new Transformation().Width(300).Height(130).Crop("scale").FetchFormat("auto")).
    BuildImageTag("sample.jpg");
 
Java & Android:
Copy to clipboard
cloudinary.url().transformation(
  new Transformation().width(300).crop("fill").fetchFormat('auto')).
    generate("sample.jpg"); 


Remote fetching of existing images

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. 
 
 
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:
 
 
Usain Bolt - Fetch - WebP with effects

Summary

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!
 

Recent Blog Posts

Our $2B Valuation

By
Blackstone Growth Invests in Cloudinary

When we started our journey in 2012, we were looking to improve our lives as developers by making it easier for us to handle the arduous tasks of handling images and videos in our code. That initial line of developer code has evolved into a full suite of media experience solutions driven by a mission that gradually revealed itself over the course of the past 10 years: help companies unleash the full potential of their media to create the most engaging visual experiences.

Read more
Direct-to-Consumer E-Commerce Requires Compelling Visual Experiences

When brands like you adopt a direct–to-consumer (DTC) e-commerce approach with no involvement of retailers or marketplaces, you gain direct and timely insight into evolving shopping behaviors. Accordingly, you can accommodate shoppers’ preferences by continually adjusting your product offering and interspersing the shopping journey with moments of excitement and intrigue. Opportunities abound for you to cultivate engaging customer relationships.

Read more
Automatically Translating Videos for an International Audience

No matter your business focus—public service, B2B integration, recruitment—multimedia, in particular video, is remarkably effective in communicating with the audience. Before, making video accessible to diverse viewers involved tasks galore, such as eliciting the service of production studios to manually dub, transcribe, and add subtitles. Those operations were costly and slow, especially for globally destined content.

Read more
Cloudinary Helps Minted Manage Its Image-Generation Pipeline at Scale

Shoppers return time and again to Minted’s global online community of independent artists and designers because they know they can count on unique, statement-making products of the highest quality there. Concurrently, the visual imagery on Minted.com must do justice to the designs into which the creators have poured their hearts and souls. For Minted’s VP of Engineering David Lien, “Because we are a premium brand, we need to ensure that every single one of our product images matches the selected configuration exactly. For example, if you pick an 18x24 art print on blue canvas, we will show that exact combination on the hero images in the PDF.”

Read more
Highlights on ImageCon 2021 and a Preview of ImageCon 2022

New year, same trend! Visual media will continue to play a monumental role in driving online conversions. To keep up with visual-experience trends and best practices, Cloudinary holds an annual conference called ImageCon, a one-of-a-kind event that helps attendees create the most engaging visual experiences possible.

Read more