Zach’s ugly mug (his face) Zach Leat­herman

Vector? Raster? Why Not Both!

8k 00 August 25, 2021

This week I ran into an interesting class of problem that—in hindsight—could use a much better workflow. Does it exist?

Screenshot of jamstackconf.com

It has to do with the hero image on the right side of the home page on jamstackconf.com. We work using Figma on the marketing team at Netlify and my first attempt at exporting this image was fraught with peril.

Attempt 1: SVG

  • 10.1 MB Original Export from Figma as SVG
  • 9.9 MB SVG optimized with SVGOMG

Now I know that these sizes are the uncompressed file sizes (before GZIP/Brotli) but I think we can both agree that even an optimized 9.9 MB is a bridge too far for even the starchiest of compression algorithms (Update: 9.9 MB gzipped to 7.36 MB). There are just too many embedded raster images inside of this SVG to yield good results from SVGOMG alone. Let’s swap to raster and see how far we can go.

Attempt 2: PNG

1.2 MB Original Export from Figma as PNG Full PNG version

So y’all know me well enough that I won’t be putting a 1.2 MB hero image in that prime area of viewport real estate. Let’s try some basic optimizations. The important thing to note here is that we need to preserve the image’s transparency. If the background color changes, I don’t want to have to reoptimize this image. That rules out a conversion to JPEG.

ImageOptim

831 KB PNG optimized with ImageOptim ImageOptim PNG version

I was impressed with the ~400 KB savings here from a single drag-and-drop onto ImageOptim but 831 is still too high.

Squoosh

376 KB PNG optimized with Squoosh (Reduced palette to 256 colors) Squoosh PNG version

Now we’re cooking with gas. That Reduced Palette option offered a huge savings! I did play around with the AVIF format settings on Squoosh a bit but wasn’t able to beat the PNG file size. (Update August 27: take note of the new Attempt 4: AVIF section below)

Attempt 3: WebP

152 KB WebP optimized with Squoosh (Lossless, Reduced palette to 256 colors, demo offers PNG fallback) Squoosh WebP version

Wow, this is a really nice file size savings! And we’ll use <picture> here to progressively enhance our PNG to WebP. Many might consider this to be “good enough” but the entire point of this blog post is the last trick (*waves jazz hands*).

Attempt 4: AVIF

Update August 27: Jake Archibald offered some good advice to try the AVIF format again (in Lossy mode) without reducing the color palette. I think it was a good prompt! The reduced palette options (while offering large file size improvement) did take a toll on the image. My informal goal here was to get as much quality out of the AVIF format with a similar file size to the WebP reduced palette version.

Read Jake’s excellent blog post: AVIF has landed.

Squoosh settings: Lossless (off), Quality: 45, Subsample Chroma (off), Effort: 6

168 KB AVIF optimized with Squoosh (Full palette, demo offers WebP and PNG fallback) Squoosh WebP version

The Winner: Two Separate Layers: SVG + AVIF/WebP/PNG

If we separate the stuff that vectors are good at (gradients, lines, etc.) and put that into an SVG and put the rest into the raster format, we can achieve even more savings! Now I did take a bit of the easy way out here—I didn’t put as much into the vector layer as I could have. And you may want to preserve more of the image in the foreground for things like “printing” (as if anyone still did that).

2 Layers, SVG version optimized with SVGOMG
Squoosh WebP version

Using the raster layer as the foreground image and the supplementary vector image as a CSS background-image, we can combine the two! You may even be able to dump the optimized raster back into the SVG as a Data URI embedded in an <image> if you want to get real fancy—I didn’t go down that road.

74 KB + 4.2 KB Optimized SVG plus AVIF/WebP/PNG Two layers

Final Results

From 10.06 MB to 78 KB—a savings of 9.9 MB. Not too bad.

Method Size Savings
Original SVG 10.06 MB
SVG optimized with SVGOMG 9.92 MB -0.14 MB
PNG 1.16 MB -8.76 MB
PNG optimized with ImageOptim 831 KB -329 KB
PNG optimized with Squoosh (Reduced palette) 376 KB -455 KB
WebP optimized with Squoosh (Reduced palette) 152 KB -224 KB
AVIF optimized with Squoosh (Full palette) 168 KB +16 KB
Two Layers: SVG (SVGOMG), AVIF/WebP/PNG (Squoosh) 78 KB -90KB

Savings are in comparison to the previous attempt.

Disclaimer: If you check the above sizes to the currently implemented version on jamstackconf.com the raster image layer may be larger than expected! I still need to merge a PR to ship some final optimizations! The PR has shipped!


< Older
Fire SVG animations (SMIL) when the SVG is visible
Newer >
Two Million npm Downloads for Eleventy

Zach Leatherman IndieWeb Avatar for https://zachleat.com/is a builder for the web at Font Awesome and the creator of Build Awesome (née IndieWeb Avatar for https://www.11ty.devEleventy/11ty), an award-winning open source website generator. He measures website performance with speedlify and at one point became too fixated on web fonts. He has given 89 talks in nine different countries at events like Beyond Tellerrand, Smashing Conference, Jamstack Conf, CSSConf, and The White House. Formerly part of CloudCannon, Netlify, Filament Group, NEJS CONF, and NebraskaJS. Learn more about Zach »

Shamelessly plug your related post

These are webmentions via the IndieWeb and webmention.io.

Sharing on social media?

This is what will show up when you share this post on Social Media:

How did you do this? I automated my Open Graph images. (Peer behind the curtain at the test page)