Resizing & cropping images
Kirby's built-in thumbs creator lets you resize and crop any image on the fly in your templates. You can not only resize and crop images from the content folder, but also from the assets folder directly.
With Kirby's new Thumbnail API, thumbs are generated asynchronously. This makes thumb creation feel a lot faster and creates less memory issues, which could easily become an issue with many images or when creating many different images sizes to serve responsive images.
A new set of plugin points can be used to hook into the thumbnail API or the thumbnail URLs, see core components.
In a default setup, thumbnails are stored in the /media
folder.
Resizing images
Cropping images
Square
Crop by width and height
Crop positions
You can set from which position a file should be cropped. The following crop options are available:
top left
top
top right
left
center
right
bottom left
bottom
bottom right
This is how to use the crop positions in your code:
Blur
The blur
method applies a blur filter to an image. You can modify the intensity of the blur effect by passing an integer. The default value is 10.
Grayscale
The grayscale method converts an image to grayscale.
Configuring your thumbnails
Options for thumbnails are set with the thumbs
key in Kirby's configuration:
Since 3.6.0
You can set a default format option in your config file and convert all images unless you override the format option in the thumb method.
This is only recommended if you find yourself converting 90% of your files to that format anyway. Otherwise you will need to override the default quite a lot.
Presets
You can define option presets for thumbs in your config.php
:
Then you can use them e.g. in your templates:
Responsive images
You can use Kirby's $image->srcset()
method to easily create the srcset
attribute for responsive images. Learn more ›
Check out our cookbook recipe Responsive images to learn more.
Image formats
Since 3.6.0
You can use the format
option to convert an existing JPEG, GIF or PNG into a WebP or AVIF file with the thumb()
method.
The format option can also be used in srcset definitions.
The GDLib/SimpleImage driver currently only supports webp
, ImageMagick supports webp
and avif
.
Be aware that not all browsers support the new formats yet.