Cloudinary Blog

Check for WebP Browser Support to Dynamically Deliver Images

Check for WebP Browser Support to Dynamically Deliver Images

Modern image compression techniques have had a large impact on our lifestyle. Digital cameras can save thousands of high-quality photos on a single memory card, smartphones can quickly share high resolution images on-the-fly, and websites and mobile apps can show rich media quickly. All of this just couldn,t have worked if image data was stored at its original, raw form. 
 
Through our apps, browsers and devices, we all use the JPEG lossy format to manage photos efficiently and the PNG lossless format to deliver graphics, icons and drawings.
 
However, while video formats have gone a long way these past few years, image formats have stayed somewhat behind. 
 
This changed at 2010 when Google first introduced the new WebP (pronounced "Weppy") format, an open sourced image format that supports both lossy and lossless image compressions.
 
 
WebP generates files significantly smaller than the popular JPEG and PNG formats. WebP also supports many advanced features, such as transparencies in its lossy mode, and more eye pleasing degradation in image quality on its lower quality, higher compression settings.
 
Smaller files mean less bandwidth consumption and reduced traffic costs for your online services and better user experience with faster delivery & image sharing times for users of your web sites and mobile apps.
 
In this blog post we wanted to introduce Cloudinary's new cloud-based support for on-the-fly generation of WebP images.
 

Generating smaller images of equal (or better) quality

If you are already familiar with Cloudinary, you probably know that you can tell Cloudinary to do image format conversions on-the-fly simply by changing the file extension of your CDN delivered URLs.
 
Consider for example, a JPG image that was uploaded to the cloud with the public ID 'sample'. Now we want to embed a 300x200px thumbnail of this image on our website. 
 

Webp browser support 

 
The left image below is generated by Cloudinary using the JPG format while the right image is generated using the WebP format. Note that you need a Google Chrome browser to view the WebP image correctly.
 
 
   
                           27.9KB JPG                                                              12.4KB WebP
  
If you check the network stats, you will notice that the JPG file is 27.9 KB while the WebP file is just 12.4 KB in size and looks almost the same. This means that we've just saved 56% in bandwidth. If your website includes many images, you can save half of your traffic, get your site to load twice as fast and make your visitors happy.
 
If you use our client libraries, either concatenate '.webp' to the public ID or set the 'format' parameter to 'webp'. For example, in Ruby on Rails and PHP:
Copy to clipboard
<%= cl_image_tag("sample.webp", :crop => :scale, :width => 300) %>
Copy to clipboard
<?php echo cl_image_tag("sample", array("format" => "webp", "width" => 300, 
                        "crop" => "scale")); ?>

 

Lower image quality equals smaller file size

JPG and WebP are lossy formats, allowing you to control the quality of the target image. 
 
There's a clear tradeoff between the target image's quality and its generated file size. In many cases, you will be able to considerably reduce the quality and size of your images while your users will barely notice the difference. 
 
The JPEG format has noticeable artifacts in lower quality levels, especially if fine details or texts are involved. The WebP format has less noticeable artifacts but tends to generate a slightly blurry image in its lower quality settings.
 
You can test that yourself by setting Cloudinary's 'quality' parameter (or 'q' for URLs) to any value between 1 to 99 (the default is 90). 
 
The following example reduces the quality of the sample image to 30%. On the left there's a JPG of 30% quality and on the right a WebP of 30% quality.
 
 
     
                              10.6KB JPG                                                          7.1KB WebP
 
The sharp-eyed will notice the difference. On the other hand, the drastic quality reduction still resulted in an image that can be considered decent, especially when using the WebP format. 
 
The JPG of 30% quality is 10.6KB while the WebP of 30% quality is just 7.1KB in size.
 
In this comparison, the WebP format saved 33% in size, which is very nice. It's interesting to notice that this low quality WebP is just 25% the size of the original JPG while delivering a comparable result, quality-wise.
 
The following Node.js and Django examples generate delivery URLs similar to the example above:
Copy to clipboard
cloudinary.image("sample.webp", { width: 300, crop: 'scale', quality: 30 });
Copy to clipboard
cloudinary.CloudinaryImage("sample.webp").image(width = 300, 
                                                crop = 'scale', quality = 30)

 

Semi-transparent images

Recently, Facebook, Google+ and many other websites, have started to display user profile pictures with a completely circular crop. In order to display such circular images on a non-solid or changing background, the images need to be semi-transparent. The JPG format doesn't support transparent pixels, so you might be forced to use PNG which is far from optimal for this purpose.
 
The following example uses Cloudinary to generate a circular face-detection based thumbnail in the JPG format. The JPG format is effective for this image and takes just 13.6KB. However, as you can see, you cannot place it on a non-white background.
 
 
 
               
 
In order to make the edges transparent, we convert the image to the PNG format. As you can see below, it looks great. But the resulting image is 63.6KB in size which is almost x5 bigger than the JPG version. This will waste bandwidth & money and will harm the user experience.
 

 
The example below generates the same image with the WebP format. The image looks great, the edges are transparent and the file is just 9.8KB in size, which is even smaller than the non-transparent JPG version.
 

 

Lossless WebP images

All WebP examples above were using the lossy WebP format with a 90% quality, or lower. 
 
WebP also supports a lossless format similar to the PNG format. This lossless format is useful for rasterized vector graphics (e.g., logos), that might be visibly degraded in quality using the lossy format.
 
In order to generate a lossless WebP file, simply set Cloudinary's 'quality' parameter to 100:
 

 
Same example in Ruby on Rails:
Copy to clipboard
<%= cl_image_tag("sample.webp", :quality => 100) %>

 

Format adoption

As mentioned above, not all browsers support the WebP format yet. 
 
At present, WebP is supported by Google Chrome, Android 4.0+, and Opera. This is a serious disadvantage, as you'll need to selectively decide when to to utilize it.
 
On the other hand, Chrome is quite popular, especially if you have an application targeted on early adopters and techies. Even if you improve the user experience only for your Chrome users and save only the part of your bandwidth that is consumed by Chrome, it might still be worth the hassle of using WebP. 
 
For example, below you can see the statistics of Cloudinary's web site for the last 30 days. Chrome is responsible for 62% of our traffic.
 
 

Dynamic WebP generation based on visitor's browser

To support serving webp only to Chrome/Android4/Opera visitors, you can use Javascript code to lazy load images according to your visitors’ browsers.
 
Cloudinary's jQuery plugin allows you to dynamically generate delivery URLs that will transform your images on the fly and deliver the result through a fast CDN with advanced caching.
 
For example, you can define image tags in your HTML page by setting the 'src' attribute to a blank image and set the 'data-src' attribute to the public ID of the actual image uploaded to Cloudinary ('sample' in this example).
Copy to clipboard
<img src="blank.png" width="150" height="100" data-crop="fill" data-src="sample.jpg"/>
The following jQuery code will convert all image tags to dynamically generated image URLs instead of the placeholder blank image.
Copy to clipboard
$('img').webpify();
The page is loaded quickly without waiting for the images to load. Afterward, the jQuery code above will dynamically update the image tags to display either a WebP image or a JPG image, depending on whether there is WebP browser support or not.
 
Chrome result:
Copy to clipboard
<img src="https://res.cloudinary.com/demo/image/upload/c_fill,h_100,w_150/sample.webp"
         width="150" height="100" data-crop="fill" data-src="sample.jpg">
 
Other browsers result:
Copy to clipboard
<img src="https://res.cloudinary.com/demo/image/upload/c_fill,h_100,w_150/sample.jpg"
         width="150" height="100" data-crop="fill" data-src="sample.jpg">
See our documentation for more details about the jQuery plugin.
 

Summary

Web sites and apps are becoming more and more media-rich. It's important to keep track of our bandwidth utilization, optimize downloads and uploads time and improve our users' experience.
 
The WebP format is another great tool to achieve our goals. With Cloudinary's on-the-fly, cloud-based WebP image format conversion, this becomes much simpler.
 
The WebP format support is available for all our free and paid plans. Sign up now for a free account if you haven't done so already.
 

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