--- title: images.Padding description: Returns an image filter that resizes the image canvas without resizing the image. categories: [] keywords: [] action: aliases: [] related: - functions/images/Filter - methods/resource/Filter returnType: images.filter signatures: ['images.Padding V1 [V2] [V3] [V4] [COLOR]'] toc: 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. [hexadecimal color]: https://developer.mozilla.org/en-US/docs/Web/CSS/hex-color [shorthand property]: https://developer.mozilla.org/en-US/docs/Web/CSS/Shorthand_properties#edges_of_a_box ## Usage Create the filter: ```go-html-template {{ $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: [`Colors`]: /methods/resource/colors ```go-html-template {{ with resources.Get "images/original.jpg" }} {{ $filter := images.Padding 20 40 (index .Colors 2) }} {{ with . | images.Filter $filter }} {{ 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. ```go-html-template {{ $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: ```go-html-template {{ $img = $img.Filter (images.Padding 2 "#777") }} ```