hugo/tpl/images
Bjørn Erik Pedersen 823f53c861
Add a set of image filters
With this you can do variants of this:

```
{{ $img := resources.Get "images/misc/3-jenny.jpg" }}
{{ $img := $img.Resize "300x" }}
{{ $g1 := $img.Filter images.Grayscale }}
{{ $g2 := $img | images.Filter (images.Saturate 30) (images.GaussianBlur 3) }}
```

Fixes #6255
2019-08-28 15:59:54 +02:00
..
images.go Add a set of image filters 2019-08-28 15:59:54 +02:00
images_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00
init.go all: Update import paths to gohugoio/hugo 2017-06-13 18:42:45 +02:00
init_test.go tests: Convert from testify to quicktest 2019-08-12 13:26:32 +02:00