9

Vector? Raster? Why Not Both!

 3 years ago
source link: https://www.zachleat.com/web/vector-raster-split/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Vector? Raster? Why Not Both!

August 25, 2021 #1 Popular

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 PNGFull 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 ImageOptimImageOptim 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/PNGTwo layers

Final Results #

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

MethodSizeSavingsOriginal SVG10.06 MBSVG optimized with SVGOMG9.92 MB-0.14 MBPNG1.16 MB-8.76 MBPNG optimized with ImageOptim831 KB-329 KBPNG optimized with Squoosh (Reduced palette)376 KB-455 KBWebP optimized with Squoosh (Reduced palette)152 KB-224 KBAVIF optimized with Squoosh (Full palette)168 KB+16 KBTwo 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!


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK