Files
hugo/resources/images
Bjørn Erik Pedersen 6a246d1152 Add images.Process filter
This allows for constructs like:

```
{{ $filters := slice (images.GaussianBlur 8) (images.Grayscale) (images.Process "jpg q30 resize 200x") }}
{{ $img = $img | images.Filter $filters }}
```

Note that the `action` option in `images.Process` is optional (`resize` in the example above), so you can use the above to just set the target format, e.g.:

```
{{ $filters := slice (images.GaussianBlur 8) (images.Grayscale) (images.Process "jpg") }}
{{ $img = $img | images.Filter $filters }}
```

Fixes #8439
2023-09-24 11:54:29 +02:00
..
2022-09-22 15:57:35 +02:00
2023-09-24 11:54:29 +02:00
2023-09-24 11:54:29 +02:00
2023-09-24 11:54:29 +02:00
2023-09-24 11:54:29 +02:00
2023-09-24 11:54:29 +02:00
2023-09-22 15:03:16 +02:00
2020-12-17 09:14:18 +01:00
2023-09-24 11:54:29 +02:00
2019-08-28 15:59:54 +02:00
2021-12-07 16:53:02 +01:00