Cloudinary Blog

Google's new logo might not be as small as claimed

Google's new PNG logo might not be as small as claimed

The Internet was abuzz last week after the announcement of Google’s new logo. What caught our eyes more than the artistic changes was this sentence on Google's blog: "building a special variant of our full-color logo that is only 305 bytes, compared to our existing logo at ~14,000 bytes". Sounds exciting! But is it correct?

As Google owns the most popular site in the world, the size of their logo, which appears on most of their pages, is critical. Even a small reduction in file size means huge bandwidth saving (and therefore money saving and global energy saving). A drastic change of X46 from approximately 13.7KB to only 305 bytes sounds amazing, so we decided to see what all the fuss was about.

The bottom line is that these promising numbers can be misleading. As explained below the actual logo images embedded in Google's web pages are much bigger and can be optimized dramatically.

The size comparison is misleading - Comparing SVG and PNG

How can Google's new logo fit in only 305 bytes? Well only as a SVG file and definitely not as a PNG file. As Gizmodo explained in their article (originally on Quora), the new logo can be defined using a few circles and rectangles. For more details see: http://gizmodo.com/how-could-googles-new-logo-be-only-305-bytes-while-its-1728793790

Analysis of Google's new vector logo by Gizmodo

Google's article announcing the logo change mentioned that the logo's file size was reduced from ~14,000 bytes, but it seems that there may have been a PNG and SVG mix here.

The old logo in a vector format (SVG) weighed only 2.4KB. See: https://upload.wikimedia.org/wikipedia/commons/a/aa/Logo_Google_2013_Official.svg

2.4KB still equates to the old logo being X8 bigger than the new logo, but this difference is quite different from the claimed X46 reduction...

The actual file size on google.com is 13.3KB. Wasting 97% of file size

Even if the file size reduction is 'just' X8, this is still very impressive. We decided to check it out. We went to Google's most visited web page, http://google.com, as seen in the screenshot below.

Google's homepage with their new logo

Apparently Google is displaying the logo on their homepage as a PNG file of 544x184 (272x92 with double pixel density ratio). This image file weighs 13.3K, which is much larger than the promised 305 bytes logo...

Google's new logo as PNG

I'm using Google's Chrome web browser which supports the SVG format. Why would Google choose to deliver this image as a PNG file, which is actually X45 bigger than the promised size and wastes 97% of the bandwidth involved in delivering the logo?

By the way, the old logo converted from SVG to a 544 pixels wide PNG weighing 22.2KB, which is just X1.7 bigger than the new logo.

Ruby:
Copy to clipboard
cl_image_tag("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg", :width=>544, :crop=>"scale", :type=>"fetch")
PHP v1:
Copy to clipboard
cl_image_tag("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg", array("width"=>544, "crop"=>"scale", "type"=>"fetch"))
PHP v2:
Copy to clipboard
(new ImageTag('https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg'))
  ->resize(Resize::scale()->width(544))
  ->deliveryType('fetch');
Python:
Copy to clipboard
CloudinaryImage("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg").image(width=544, crop="scale", type="fetch")
Node.js:
Copy to clipboard
cloudinary.image("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg", {width: 544, crop: "scale", type: "fetch"})
Java:
Copy to clipboard
cloudinary.url().transformation(new Transformation().width(544).crop("scale")).type("fetch").imageTag("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg");
JS:
Copy to clipboard
cloudinary.imageTag('https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg', {width: 544, crop: "scale", type: "fetch"}).toHtml();
jQuery:
Copy to clipboard
$.cloudinary.image("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg", {width: 544, crop: "scale", type: "fetch"})
React:
Copy to clipboard
<Image publicId="https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg" type="fetch">
  <Transformation width="544" crop="scale" />
</Image>
Vue.js:
Copy to clipboard
<cld-image publicId="https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg" type="fetch">
  <cld-transformation width="544" crop="scale" />
</cld-image>
Angular:
Copy to clipboard
<cl-image public-id="https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg" type="fetch">
  <cl-transformation width="544" crop="scale">
  </cl-transformation>
</cl-image>
.NET:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(new Transformation().Width(544).Crop("scale")).Action("fetch").BuildImageTag("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg")
Android:
Copy to clipboard
MediaManager.get().url().transformation(new Transformation().width(544).crop("scale")).type("fetch").generate("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg");
iOS:
Copy to clipboard
imageView.cldSetImage(cloudinary.createUrl().setType( "fetch").setTransformation(CLDTransformation().setWidth(544).setCrop("scale")).generate("https://upload.wikimedia.org/wikipedia/commons/c/c9/Google_logo_(2013-2015).svg")!, cloudinary: cloudinary)
Google's old logo as PNG

Maybe Google decided not to use the SVG format because older browsers don't support it. But there might be better solutions for that as well, as explained below.

Significant file size saving using PNG-8

Google delivers the new logo using the PNG-24 format and it weighs 13.3KB. But why not use the 8-bit version of the PNG format that definitely has a wide enough color space for such a logo?

The following on-the-fly image manipulation URL creates and delivers a PNG-8 version of the logo.

Ruby:
Copy to clipboard
cl_image_tag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", :flags=>"png8", :type=>"fetch")
PHP v1:
Copy to clipboard
cl_image_tag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", array("flags"=>"png8", "type"=>"fetch"))
PHP v2:
Copy to clipboard
(new ImageTag('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'))
  ->addFlag(Flag::png8())
  ->deliveryType('fetch');
Python:
Copy to clipboard
CloudinaryImage("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png").image(flags="png8", type="fetch")
Node.js:
Copy to clipboard
cloudinary.image("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", {flags: "png8", type: "fetch"})
Java:
Copy to clipboard
cloudinary.url().transformation(new Transformation().flags("png8")).type("fetch").imageTag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png");
JS:
Copy to clipboard
cloudinary.imageTag('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png', {flags: "png8", type: "fetch"}).toHtml();
jQuery:
Copy to clipboard
$.cloudinary.image("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", {flags: "png8", type: "fetch"})
React:
Copy to clipboard
<Image publicId="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <Transformation flags="png8" />
</Image>
Vue.js:
Copy to clipboard
<cld-image publicId="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <cld-transformation flags="png8" />
</cld-image>
Angular:
Copy to clipboard
<cl-image public-id="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <cl-transformation flags="png8">
  </cl-transformation>
</cl-image>
.NET:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(new Transformation().Flags("png8")).Action("fetch").BuildImageTag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")
Android:
Copy to clipboard
MediaManager.get().url().transformation(new Transformation().flags("png8")).type("fetch").generate("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png");
iOS:
Copy to clipboard
imageView.cldSetImage(cloudinary.createUrl().setType( "fetch").setTransformation(CLDTransformation().setFlags("png8")).generate("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")!, cloudinary: cloudinary)
Google's new logo as PNG8 format

The resulting image looks exactly the same as the original image and is just 9.1KB! We've just saved Google about 32% of the bandwidth involved in delivering the logo on their homepage.

Google is promoting their modern WebP image format, which is supported by the Google Chrome browser. The following dynamic URL delivers the logo as WebP for Chrome browsers and as PNG for other browsers. The image as a lossless WebP looks exactly the same and weighs just 11.2KB. Which means a saving of 16% compared to the original PNG image.

Ruby:
Copy to clipboard
cl_image_tag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", :fetch_format=>:auto, :type=>"fetch")
PHP v1:
Copy to clipboard
cl_image_tag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", array("fetch_format"=>"auto", "type"=>"fetch"))
PHP v2:
Copy to clipboard
(new ImageTag('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'))
  ->delivery(Delivery::format(Format::auto()))
  ->deliveryType('fetch');
Python:
Copy to clipboard
CloudinaryImage("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png").image(fetch_format="auto", type="fetch")
Node.js:
Copy to clipboard
cloudinary.image("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", {fetch_format: "auto", type: "fetch"})
Java:
Copy to clipboard
cloudinary.url().transformation(new Transformation().fetchFormat("auto")).type("fetch").imageTag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png");
JS:
Copy to clipboard
cloudinary.imageTag('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png', {fetchFormat: "auto", type: "fetch"}).toHtml();
jQuery:
Copy to clipboard
$.cloudinary.image("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", {fetch_format: "auto", type: "fetch"})
React:
Copy to clipboard
<Image publicId="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <Transformation fetchFormat="auto" />
</Image>
Vue.js:
Copy to clipboard
<cld-image publicId="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <cld-transformation fetchFormat="auto" />
</cld-image>
Angular:
Copy to clipboard
<cl-image public-id="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <cl-transformation fetch-format="auto">
  </cl-transformation>
</cl-image>
.NET:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(new Transformation().FetchFormat("auto")).Action("fetch").BuildImageTag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")
Android:
Copy to clipboard
MediaManager.get().url().transformation(new Transformation().fetchFormat("auto")).type("fetch").generate("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png");
iOS:
Copy to clipboard
imageView.cldSetImage(cloudinary.createUrl().setType( "fetch").setTransformation(CLDTransformation().setFetchFormat("auto")).generate("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")!, cloudinary: cloudinary)
Google's new logo as a WebP format

Even further file downsizing

If Google insists on delivering rasterized images rather than embedding SVG files, the file size can be further reduced.

As you might have noticed, Google embeds a double resolution ('retina display') version of the logo (544x184 instead of 272x92). The X2 image is delivered to devices and browsers with regular resolution (i.e., DPR 1.0), which do not benefit from the high resolution image. Checking the actual device resolution and delivering a regular 272x92 image when relevant, would make the file just 8KB, which means 40% bandwidth savings.

Ruby:
Copy to clipboard
cl_image_tag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", :width=>0.5, :crop=>"scale", :type=>"fetch")
PHP v1:
Copy to clipboard
cl_image_tag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", array("width"=>"0.5", "crop"=>"scale", "type"=>"fetch"))
PHP v2:
Copy to clipboard
(new ImageTag('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'))
  ->resize(Resize::scale()->width(0.5))
  ->deliveryType('fetch');
Python:
Copy to clipboard
CloudinaryImage("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png").image(width="0.5", crop="scale", type="fetch")
Node.js:
Copy to clipboard
cloudinary.image("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", {width: "0.5", crop: "scale", type: "fetch"})
Java:
Copy to clipboard
cloudinary.url().transformation(new Transformation().width(0.5).crop("scale")).type("fetch").imageTag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png");
JS:
Copy to clipboard
cloudinary.imageTag('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png', {width: "0.5", crop: "scale", type: "fetch"}).toHtml();
jQuery:
Copy to clipboard
$.cloudinary.image("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", {width: "0.5", crop: "scale", type: "fetch"})
React:
Copy to clipboard
<Image publicId="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <Transformation width="0.5" crop="scale" />
</Image>
Vue.js:
Copy to clipboard
<cld-image publicId="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <cld-transformation width="0.5" crop="scale" />
</cld-image>
Angular:
Copy to clipboard
<cl-image public-id="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" type="fetch">
  <cl-transformation width="0.5" crop="scale">
  </cl-transformation>
</cl-image>
.NET:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(new Transformation().Width(0.5).Crop("scale")).Action("fetch").BuildImageTag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")
Android:
Copy to clipboard
MediaManager.get().url().transformation(new Transformation().width(0.5).crop("scale")).type("fetch").generate("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png");
iOS:
Copy to clipboard
imageView.cldSetImage(cloudinary.createUrl().setType( "fetch").setTransformation(CLDTransformation().setWidth(0.5).setCrop("scale")).generate("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")!, cloudinary: cloudinary)
Scaled down version of Google's new logo

And if Google really wants their logo to be delivered quickly to places and devices with slow Internet connection, using a 70% quality lossy WebP image with a white background (rather than transparent), would result in a 4.7KB file (65% bandwidth savings).

Ruby:
Copy to clipboard
cl_image_tag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", :width=>0.5, :quality=>70, :background=>"white", :crop=>"scale", :format=>"webp", :type=>"fetch")
PHP v1:
Copy to clipboard
cl_image_tag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", array("width"=>"0.5", "quality"=>70, "background"=>"white", "crop"=>"scale", "format"=>"webp", "type"=>"fetch"))
PHP v2:
Copy to clipboard
(new ImageTag('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'))
  ->resize(Resize::scale()->width(0.5))
  ->backgroundColor(Color::WHITE)
  ->delivery(Delivery::format(Format::webp()))
  ->delivery(Delivery::quality(70))
  ->deliveryType('fetch');
Python:
Copy to clipboard
CloudinaryImage("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png").image(width="0.5", quality=70, background="white", crop="scale", format="webp", type="fetch")
Node.js:
Copy to clipboard
cloudinary.image("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", {width: "0.5", quality: 70, background: "white", crop: "scale", format: "webp", type: "fetch"})
Java:
Copy to clipboard
cloudinary.url().transformation(new Transformation().width(0.5).quality(70).background("white").crop("scale")).format("webp").type("fetch").imageTag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png");
JS:
Copy to clipboard
cloudinary.imageTag('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png', {width: "0.5", quality: 70, background: "white", crop: "scale", format: "webp", type: "fetch"}).toHtml();
jQuery:
Copy to clipboard
$.cloudinary.image("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", {width: "0.5", quality: 70, background: "white", crop: "scale", format: "webp", type: "fetch"})
React:
Copy to clipboard
<Image publicId="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" format="webp" type="fetch">
  <Transformation width="0.5" quality="70" background="white" crop="scale" />
</Image>
Vue.js:
Copy to clipboard
<cld-image publicId="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" format="webp" type="fetch">
  <cld-transformation width="0.5" quality="70" background="white" crop="scale" />
</cld-image>
Angular:
Copy to clipboard
<cl-image public-id="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" format="webp" type="fetch">
  <cl-transformation width="0.5" quality="70" background="white" crop="scale">
  </cl-transformation>
</cl-image>
.NET:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(new Transformation().Width(0.5).Quality(70).Background("white").Crop("scale")).Format("webp").Action("fetch").BuildImageTag("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")
Android:
Copy to clipboard
MediaManager.get().url().transformation(new Transformation().width(0.5).quality(70).background("white").crop("scale")).format("webp").type("fetch").generate("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png");
iOS:
Copy to clipboard
imageView.cldSetImage(cloudinary.createUrl().setFormat("webp").setType( "fetch").setTransformation(CLDTransformation().setWidth(0.5).setQuality(70).setBackground("white").setCrop("scale")).generate("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")!, cloudinary: cloudinary)
Scaled down WebP reduced quality white background version of Google's new logo

Summary

Whether Google's new logo is better than the older one is a matter of taste, but aiming for a file that consumes less bytes, reduce costs and improves performance is definitely a very smart choice. Highlighting the huge improvement in file size as a part of the logo announcement was an interesting twist and definitely helped Google's PR efforts.

Google might consider switching to SVG for displaying the logo on their sites. Until then, the delivered PNG images are much bigger than the promised 305 bytes. As shown in this post, even when using rasterized images, the file size and consumed bandwidth can be reduced dramatically using the PNG-8 format, the WebP format and regular DPR 1.0 image dimensions or lossy WebP compression.

All image format conversion and image transformations mentioned in this post were done on-the-fly with Cloudinary's cloud-based image transformations and image optimizations.

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