images.Pixelate
Syntax
images.Pixelate SIZE
Returns
images.filter
Usage
Create the filter:
{{ $filter := images.Pixelate 4 }}
Apply the filter using the images.Filter
function:
{{ with resources.Get "images/original.jpg" }}
{{ with . | images.Filter $filter }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
{{ end }}
{{ end }}
You can also apply the filter using the Filter
method on a Resource
object:
{{ with resources.Get "images/original.jpg" }}
{{ with .Filter $filter }}
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
{{ end }}
{{ end }}
Example
Original
![Zion National Park](/images/examples/zion-national-park_hu_825a161e65713761.jpg)
Processed
![Zion National Park](/images/examples/zion-national-park_hu_672bb1f0f590a93c.jpg)