Image processing

Zola provides support for automatic image resizing through the built-in function resize_image, which is available in template code as well as in shortcodes.

The function usage is as follows:

resize_image(path, width, height, op, format, quality)

🔗Arguments

  • path: The path to the source image. The following directories will be searched, in this order:

    • / (the root of the project; that is, the directory with your config.toml)
    • /static
    • /content
    • /public
    • /themes/current-theme/static
  • width and height: The dimensions in pixels of the resized image. Usage depends on the op argument.

  • op (optional): Resize operation. This can be one of:

    • "scale"
    • "fit_width"
    • "fit_height"
    • "fit"
    • "fill"

    What each of these does is explained below. The default is "fill".

  • format (optional): Encoding format of the resized image. May be one of:

    • "auto"
    • "jpg"
    • "png"
    • "webp"

    The default is "auto", this means that the format is chosen based on input image format. JPEG is chosen for JPEGs and other lossy formats, and PNG is chosen for PNGs and other lossless formats.

  • quality (optional): JPEG or WebP quality of the resized image, in percent. Only used when encoding JPEGs or WebPs; for JPEG default value is 75, for WebP default is lossless.

🔗Image processing and return value

Zola performs image processing during the build process and places the resized images in a subdirectory in the static files directory:

static/processed_images/

The filename of each resized image is a hash of the function arguments, which means that once an image is resized in a certain way, it will be stored in the above directory and will not need to be resized again during subsequent builds (unless the image itself, the dimensions, or other arguments have changed).

The function returns an object with the following schema:

/// The final URL for that asset
url: String,
/// The path to the static asset generated
static_path: String,
/// New image width
width: u32,
/// New image height
height: u32,
/// Original image width
orig_width: u32,
/// Original image height
orig_height: u32,

🔗Resize operations

The source for all examples is this 300 pixel × 380 pixel image:

zola

🔗"scale"

Simply scales the image to the specified dimensions (width & height) irrespective of the aspect ratio.

resize_image(..., width=150, height=150, op="scale")

🔗"fit_width"

Resizes the image such that the resulting width is width and height is whatever will preserve the aspect ratio. The height argument is not needed.

resize_image(..., width=100, op="fit_width")

🔗"fit_height"

Resizes the image such that the resulting height is height and width is whatever will preserve the aspect ratio. The width argument is not needed.

resize_image(..., height=150, op="fit_height")

🔗"fit"

Like "fit_width" and "fit_height" combined, but only resize if the image is bigger than any of the specified dimensions. This mode is handy, if for example images are automatically shrunk to certain sizes in a shortcode for mobile optimization. Resizes the image such that the result fits within width and height while preserving the aspect ratio. This means that both width or height will be at max width and height, respectively, but possibly one of them smaller so as to preserve the aspect ratio.

resize_image(..., width=5000, height=5000, op="fit")

resize_image(..., width=150, height=150, op="fit")

🔗"fill"

This is the default operation. It takes the image's center part with the same aspect ratio as the width and height given and resizes that to width and height. This means that parts of the image that are outside of the resized aspect ratio are cropped away.

resize_image(..., width=150, height=150, op="fill")

🔗Using resize_image in markdown via shortcodes

resize_image is a Zola built-in Tera function (see the templates chapter), but it can be used in Markdown using shortcodes.

The examples above were generated using a shortcode file named resize_image.html with this content:

{% set image = resize_image(path=path, width=width, height=height, op=op) %}
<img src="{{ image.url }}" />

🔗Creating picture galleries

The resize_image() can be used multiple times and/or in loops. It is designed to handle this efficiently.

This can be used along with assets page metadata to create picture galleries. The assets variable holds paths to all assets in the directory of a page with resources (see asset colocation); if you have files other than images you will need to filter them out in the loop first like in the example below.

This can be used in shortcodes. For example, we can create a very simple html-only clickable picture gallery with the following shortcode named gallery.html:

<div>
{% for asset in page.assets -%}
  {%- if asset is matching("[.](jpg|png)$") -%}
    {% set image = resize_image(path=asset, width=240, height=180) %}
    <a href="{{ get_url(path=asset) }}" target="_blank">
      <img src="{{ image.url }}" />
    </a>
  {%- endif %}
{%- endfor %}
</div>

As you can notice, we didn't specify an op argument, which means that it'll default to "fill". Similarly, the format will default to "auto" (choosing PNG or JPEG as appropriate) and the JPEG quality will default to 75.

To call it from a Markdown file, simply do:

{{ gallery() }}

Here is the result:

Image attribution: Public domain, except: _06-example.jpg_: Willi Heidelbach, _07-example.jpg_: Daniel Ullrich.

🔗Get image size

Sometimes when building a gallery it is useful to know the dimensions of each asset. You can get this information with get_image_metadata.