Contents

WebP Image Processing in Hugo


WebP is a modern image format that provides superior lossless and lossy compression for images on the web. But for some reason, it is not supported in Hugo framework. In this section i would like to discuss about implementation of WebP in Hugo.

Update April 2021
As of this commit “33d5f8: Add Add webp image encoding support”, Hugo version 0.83.0 and later can use WebP image processing. Based on those commit, currently only used when encoding to Webp in extended version.

Why WebP?

There are several article mentioned that WebP provide a better quality and quantity for web image resources. According to the Google Developers, WebP lossless images are 26% smaller in size compared to PNGs. WebP lossy images are 25-34% smaller than comparable JPEG images at equivalent SSIM quality index. Lighthouse also mentioned in the web.dev that, WebP have superior compression and quality characteristics compared to their older JPEG and PNG counterparts. For more details, you can read “WebP Compression Study”.

According to the Caniuse, currently more than 80% of browsers support the WebP image format. That would include Chrome, Firefox, Edge and Safari. Although not all browsers currently support the WebP image format, it’s important to note that, if set up properly, your website’s images won’t appear broken for these browsers.

WebP in Hugo

Based on the explanation above we can conclude that using WebP as default image resources is a good choice for Hugo. According to Hugo image processing documentation, at this time only jpg, png, tif, bmp, and gif format images can be used in Hugo. But there is currently no WebP support for Hugo. This issue is being discussed at #5924, Erik mentioned that we need the implementation both decoder and encoder of WebP in GoLang dependency. The Go team itself already provides WebP package support but only the decoder without the encoder in GoLang WebP Documentation.

There is still way to force support WebP in Hugo. Gregor Noczinski invested something good about WebP implementation in Hugo via PR #7155. He has added the webp encoding support and this change required to use WebP binaries to be installed in your system. But this changed was rejected by Erik because of no GoLang native WebP implementation available instead of using pre-built binaries or C-bindigs to acces the library.

If you wanted to use WebP encoding in Hugo, you can try to build Hugo from source with picking this PR #7155 in your git-tree or download my pre-built binaries in the attachment below. You can use all the commands on the WebP image if you have WebP binaries installed on your system. For example, resizes all WebP images into a specific size:

1
2
3
{{ $imageResource := .Page.Resources.GetMatch "*.webp" }}
{{ $resized := $imageResource.Resize "300px" }}
{{ $resized.RelPermalink }}
Update March 2021
in Hugo 0.82 and later, media.Types format has been modified which causes conflicts with #7155. If you are having problem fixing the conflict, you can cherry-pick my fixes instead.
Pre-built Hugo Binaries
 hugo.bin - linux/amd64 extended version