mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-03 20:22:38 +00:00
30a20122b7
# Conflicts: # docs/data/docs.yaml
1.6 KiB
1.6 KiB
title, description, categories, keywords, params
| title | description | categories | keywords | params | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Fill | Applicable to images, returns a new image resource cropped and resized according to the given processing specification. |
|
{{% include "/_common/methods/resource/global-page-remote-resources.md" %}}
Crop and resize an image according to the given processing specification. You must provide both width and height (such as 500x200) within the specification. Unlike Resize, which may stretch the image, Fill maintains the original aspect ratio by cropping the image to the target ratio before resizing. The operation uses the anchor and resampling filter provided, if any.
{{ with resources.Get "images/original.jpg" }}
{{ with .Fill "500x200 TopRight lanczos" }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
{{ end }}
{{ end }}
In the example above, "500x200 TopRight lanczos" is the processing specification.
{{% include "/_common/methods/resource/processing-spec.md" %}}
Example
{{ with resources.Get "images/original.jpg" }}
{{ with .Fill "500x200 TopRight lanczos webp q85" }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
{{ end }}
{{ end }}
{{< img src="images/examples/zion-national-park.jpg" alt="Zion National Park" filter="Process" filterArgs="fill 500x200 TopRight lanczos webp q85" example=true
}}