Optimize images with Thumbor
Thumbor can be used for free to resize, compress, and transform images on-demand.
Thumbor is a free, open source image CDN that makes it easy to compress, resize, and transform images. This post lets you try out Thumbor firsthand without needing to install anything. We've set up a sandbox Thumbor server for you to try out at http://34.67.235.246:8888
. The image that you're going to experiment with is available at http://34.67.235.246:8888/unsafe/https://web.dev/backdrop-filter/hero.jpg.
Prequisites #
This post assumes that you understand how image CDNs can improve your load performance. If not, check out Use image CDNs to optimize images. It also assumes that you've built basic websites before.
Thumbor URL Format #
As mentioned in Use Image CDNs to Optimize Images, each image CDN uses a slightly different URL format for images. Figure 1 represents Thumbor's format.
Origin #
Like all origins, the origin of a Thumbor URL is composed of three parts: a scheme (which is almost always http
or https
), a host, and a port. In this example, the host is identified using an IP address, but if you're using a DNS server it might look like thumbor-server.my-site.com
. By default, Thumbor uses port 8888
to serve images.
Security Key #
The unsafe
part of the URL indicates that you're using Thumbor without a security key. A security key prevents a user from making unauthorized changes to your image URLs. By changing the image URL, a user could use your server (and your hosting bill) to resize their images, or, more maliciously, to overload your server. This guide won't cover setting up Thumbor's security key feature.
Size #
This part of the URL specifies the desired size of the output image. This can be omitted if you don't want to change the size of the image. Thumbor will use different approaches like cropping or scaling to achieve the desired size depending on the other URL parameters. The next section of this post explains how to resize images in more detail.
Try it now:
Click the following URL to view the image served at its original size in a new tab: http://34.67.235.246:8888/unsafe/https://web.dev/backdrop-filter/hero.jpg
Original image Resize the image to 100x100 pixels: http://34.67.235.246:8888/unsafe/100x100/https://web.dev/backdrop-filter/hero.jpg

Filters #
Filters transform an image. The filters part of the URL segment starts with filters:
followed by a colon-separated list of filters; this can be omitted if you are not using any filters. The syntax for individual filters resembles a function call (for example grayscale()
) containing zero or more arguments.
Try it now:
Apply a single filter: a Gaussian blur effect with a radius of 25 pixels: http://34.67.235.246:8888/unsafe/filters:blur(25)/https://web.dev/backdrop-filter/hero.jpg
Blurred image Apply multiple filter. Convert to grayscale and rotate the image 90 degrees: http://34.67.235.246:8888/unsafe/filters:grayscale():blur(90)/https://web.dev/backdrop-filter/hero.jpg

Transforming Images #
This section focuses on the Thumbor functionalities most relevant to performance: compression, resizing, and conversion between file formats.
Compression #
The quality filter compresses JPEG images to the desired image quality level (1-100). If no quality level is provided, Thumbor compresses the image to a quality level of 80. This is a good default: quality levels 80-85 typically have little noticeable effect on image quality, but usually decrease image size by 30-40%.
Try it now:
Compress the image to a quality of 1 (very bad): http://34.67.235.246:8888/unsafe/filters:quality(1)/https://web.dev/backdrop-filter/hero.jpg
Low-quality image Compress the image using Thumbor's default compression settings: http://34.67.235.246:8888/unsafe/filters:quality()/https://web.dev/backdrop-filter/hero.jpg

Resizing #
To resize an image while maintaining its original proportions use the format $WIDTHx0
or 0x$HEIGHT
within the size
portion of the URL string.
Try it now:
Resize the image to a width of 200 pixels while maintaining original proportions: http://34.67.235.246:8888/unsafe/200x0/https://web.dev/backdrop-filter/hero.jpg
Image resized to a width of 200 pixels Resize the image to a height of 500 pixels while maintaining original proportion: http://34.67.235.246:8888/unsafe/0x500/https://web.dev/backdrop-filter/hero.jpg

You can also resize images to a percentage of the original by using the proportion filter. If size is specified in conjunction with the proportion filter, the image will be resized, and then the proportion filter will be applied.
Try it now:
Resize the image to 50% of the original: http://34.67.235.246:8888/unsafe/filters:proportion(.5)/https://web.dev/backdrop-filter/hero.jpg
Image resized to 50% the size of the original Resize the image to a width of 1000 pixels, then resize the image to 10% of its current size: http://34.67.235.246:8888/unsafe/1000x/filters:proportion(.1)/https://web.dev/backdrop-filter/hero.jpg

These methods are just a few of Thumbor's many cropping and resizing options. To read about other options, check out Usage.
File Formats #
The format filter converts images to jpeg
, webp
, gif
, or png
. Keep in mind that if you're optimizing for performance you should use either JPEG or WebP as PNG and GIF files tend to be significantly larger and do not compress as well.
Try it now:
- Convert the image to WebP. If you open the Network panel of DevTools the document's Content-Type response header shows that the server returned a WebP image: http://34.67.235.246:8888/unsafe/filters:format(webp)/https://web.dev/backdrop-filter/hero.jpg

content-type
response header shown in DevToolsNext Steps #
Try out other filters and transformations on the hero.jpg
image.
If you're following along using your own Thumbor installation, check out the appendix below that explains how and why to use the thumbor.conf
file.
Appendix: thumbor.conf
#
Many of the configuration options discussed in this post, plus many others, can be established as defaults by setting up and using a thumbor.conf
configuration file. Settings in the thumbor.conf
file will be applied to all images unless overridden by the URL string parameters.
Run the
thumbor-config
command to create a newthumbor.conf
file.thumbor-config > ./thumbor.conf
Open your new
thumbor.conf
file. Thethumbor-config
command generated a file that lists and explains all Thumbor configuration options.Configure settings by uncommenting lines and changing the default values. You may find it useful to set the following settings:
QUALITY
AUTO_WEBP
MAX_WIDTH
andMAX_HEIGHT
ALLOW_ANIMATED_GIFS
Run Thumbor with the
--conf
flag to use yourthumbor.conf
settings.thumbor --conf /path/to/thumbor.conf