hugo/docs/content/en/functions/images/Padding.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

2.2 KiB

title description categories keywords action toc
images.Padding Returns an image filter that resizes the image canvas without resizing the image.
aliases related returnType signatures
functions/images/Filter
methods/resource/Filter
images.filter
images.Padding V1 [V2] [V3] [V4] [COLOR]
true

{{< new-in 0.120.0 >}}

The last argument is the canvas color, expressed as an RGB or RGBA hexadecimal color. The default value is ffffffff (opaque white). The preceding arguments are the padding values, in pixels, using the CSS shorthand property syntax. Negative padding values will crop the image.

Usage

Create the filter:

{{ $filter := images.Padding 20 40 "#976941" }}

{{% include "functions/images/_common/apply-image-filter.md" %}}

Combine with the Colors method to create a border with one of the image's most dominant colors:

{{ with resources.Get "images/original.jpg" }}
  {{ $filter := images.Padding 20 40 (index .Colors 2) }}
  {{ with . | images.Filter $filter }}
    <img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
  {{ end }}
{{ end }}

Example

{{< img src="images/examples/zion-national-park.jpg" alt="Zion National Park" filter="Padding" filterArgs="20,40,20,40,#976941" example=true

}}

Other recipes

This example resizes an image to 300px wide, converts it to the WebP format, adds 20px vertical padding and 50px horizontal padding, then sets the canvas color to dark green with 33% opacity.

Conversion to WebP is required to support transparency. PNG and WebP images have an alpha channel; JPEG and GIF do not.

{{ $img := resources.Get "images/a.jpg" }}
{{ $filters := slice
  (images.Process "resize 300x webp")
  (images.Padding 20 50 "#0705")
}}
{{ $img = $img.Filter $filters }}

To add a 2px gray border to an image:

{{ $img = $img.Filter (images.Padding 2 "#777") }}