Skip to content

PNG optimization – saving bandwidth on transparent PNGs with dynamic underlay

There are many ways to optimize PNG files, but one optimization which is commonly overlooked involves the PNG’s transparent background. If you’ve chosen to use PNGs instead of a more compact format like JPG, mainly for the PNG’s support of a transparent background (alpha channel), read on and see how dynamic underlays can reduce your file size by as much as 1:5.
Graphic designers of sites and apps sometimes wish to display clipped photos on top of a certain background. A common example is a news site that shows a head shot of the author, or a figure mentioned in the article. Typically, the images are clipped using photo editing software like Photoshop, and then they can then be placed above background colors, patterns and between text paragraphs.
The issue is that the image may be placed in different contexts, and in each context the background could have a different color. The need arises to give the image a transparent background, and this requires a file format that supports transparency (alpha channel). The format typically chosen is PNG, and this can increase file size substantially.
For example, the following photo of a person was taken. It was saved using the JPG format as expected.
Business man photo
Then a graphic designer manually edited and clipped the photo. In order to maintain transparency (alpha channel) of the clipped photo, the image is uploaded using the PNG format that supports transparency, in contrast to the JPG photo format.
Transparent background PNG thumbnail
This allows the image to be placed on any background, however, the PNG format is not optimal for photos. The generated thumbnail weighs 59.8KB – almost 500% its weight as a 90%-quality JPG, which is 12.4KB. That might be a huge waste of bandwidth and money. It also harms the browsing experience of users, who need to wait much longer for images to load.
Here’s an idea to dramatically cut the image size – not use PNG at all. The graphic designer can save the file as JPG and apply the desired background color dynamically.
One way to do this is by uploading the cropped photo to Cloudinary, and adding the dynamic background on the fly. In case you’re new here, Cloudinary is a cloud-based system that can help you store, administrate, traansform and deliver your website’s images. Image transformation is performed dynamically using URLs or API calls you can easily generate within your code.
The first step is to deliver the image as a JPG with 90% quality. Note that Cloudinary can also crop the clipped photo to 200×250, on-the-fly, based on the automatically detected face.
White background JPG
We’re now down to 12.4KB for the file – almost 1/5 of its weight when it was saved as PNG. But of course the graphic designer still has the same problem – now to place the image over a non-white background, as in the example below.
White background JPG on a red background
In Cloudinary, one simple solution is to create a JPG thumbnail on the fly, which already has the background color you need for the thumbnail. While you can do this manually using photo editing software, you definitely don’t want to create many different versions for all possible background colors in your site and modify them when your graphic design changes.
The following example sets the ‘background‘ transformation parameter (or ‘b‘ for URLs) to an RGB color (#c11e31 red color in this case). The result is the same JPG image, which is dynamically generated with a red background that can now be placed nicely on top of the page’s red background.
The generated JPG image weighs just 12.8KB, an optimization compared to the PNG option. The JPG image saves 80% of bandwidth and improves page load time. In addition, you can dynamically modify the color parameter of the transformation URL to any desired color of your site or app.
https://res.cloudinary.com/demo/image/upload/w_200,h_250,c_fill,g_face,b_rgb:c11e31/business_man_clipped.jpg
Red background JPG
  Green background JPG  Blue background JPG
Same image tag and URL generation in PHP:
<?php echo cl_image_tag("business_man_clipped.jpg",
        array( "width" => 200, "height" => 250, "crop" => "fill",
               "gravity" => "face", "background" => "#c11e31" )); ?>
In addition, further filters and effects can be applied on the clipped photo. The example below dynamically increases the strength of the red channel, reduces opacity, reduces color saturation and reduces contrast.
https://res.cloudinary.com/demo/image/upload/w_200,h_250,c_fill,g_face,e_red:100,o_40/e_saturation:-100/e_contrast:-50,b_rgb:c11e31/business_man_clipped.jpg
 
Watermark with red background JPG
The examples above are useful for a solid background color. However, modern websites might have gradient backgrounds or image-based backgrounds. Cloudinary can assist in optimizing bandwidth usage and user experience in this case as well.
For example, the following background image was uploaded to Cloudinary with the public ID of ‘bn_bg_wide’.
https://res.cloudinary.com/demo/image/upload/bn_bg_wide.jpg

Blue background sample

This image weighs 18.4KB. Saving it as a transparent background PNG means an extra 59KB, for a total weight as PNG of 78.2KB. Optimizing the PNG using a JPG image with a solid background is not an option at all in this case. Again, you can manually create a JPG image with the clipped photo and the background image underneath, but this will not work when you have plenty of photos and different background images.
You can use Cloudinary’s dynamic image overlays and underlays to overcome this issue and optimize the PNG.
In the following example, Cloudinary dynamically adds the cropped photo of the person as an overlay, 20 pixels from the top right corner, while scaling down the clipped photo to a height of 220 pixels.
https://res.cloudinary.com/demo/image/upload/l_business_man_clipped,h_220,c_fill,g_north_east,x_20,y_20/bn_bg_wide.jpg
Transparent background person on a blue image
The resulting image weighs 24.8KB. This PNG optimization saved almost 70% of image size and bandwidth.
Building the same URL, this time in Node.js:
cloudinary.image("bn_bg_wide.jpg",
  { overlay: "business_man_clipped", height: 220, crop: "fill",
    gravity: "north_east", x: 20, y: 20 })
Another option: instead of adding the clipped photo as an overlay, create a 200×250 face detection based thumbnail of the clipped photo and add the blue background image as an underlay image.
https://res.cloudinary.com/demo/image/upload/w_200,h_250,c_fill,g_face/u_bn_bg_wide,w_1.0,h_1.0,fl_relative,c_crop,g_north_east/business_man_clipped.jpg

Blue underlay image

The generated JPG image image including the underlay, weighs just 13.7KB.
Same example using Python (and Django):
cloudinary.CloudinaryImage("business_man_clipped.jpg").image(
  transformation = [
    { "width": 200, "height": 250, "crop": 'fill', "gravity": "face" },
    { "underlay": "bn_bg_wide", "width": 1.0, "height": 1.0,
      "flags": 'relative', "crop": 'crop', "gravity": 'north_east' }] )
Another simple option to optimize the PNG is to convert and deliver the clipped image using the WebP format. This modern format is optimized for photos and also supports transparent backgrounds.
The following 200×250 thumbnail was automatically converted by Cloudinary to the WebP format with the high 90% quality. The resulting image weighs just 10.5KB. This means saving 82% of the size and bandwidth of the PNG image, while having an almost identical result.
https://res.cloudinary.com/demo/image/upload/w_200,h_250,c_fill,g_face,q_90/business_man_clipped.webp
 
Red background WebP
The following Ruby on Rails command creates an image tag with the same transformation and CDN delivery URL:
<%= cl_image_tag("business_man_clipped.webp", :width => 200, :height => 250, 
                 :crop => :fill, :gravity => :face, :quality => 90 %>
The only issue with the WebP format is that most browsers don’t support it yet. Google Chrome and Android are the only major platforms that currently supports it. You can use Cloudinary’s smart URLs with the ‘f_auto‘ parameter which delivers using the WebP format to supported devices and using the PNG format to other devices.
You can read more about selective WebP image delivery here: Transparent WebP format CDN delivery based on visitors’ browsers.
One of our missions at Cloudinary is to [optimize](https://cloudinary.com/documentation/image_optimization) the performance of our customers’ sites and apps, while improving their user experience and saving them money by reducing unnecessary bandwidth usage. Together with other cloud-based image transformation capabilities, developers can perform complex image transformations with optimized size and delivery, without spending precious time on achieving these tasks manually or building the automation themselves.
In this blog post we showed a use case in which we easily save about 80% of bandwidth with a simple PNG optimization, while delivering photos using Cloudinary’s cloud-based image management. These capabilities are available in our perpetual free plan. We invite you to sign up, try out the dynamic background and overlay features, give us some feedback and share your insights in the comments below.

Further Reading on Image Optimization

 
Back to top

Featured Post