summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-09-24 12:26:00 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-09-24 12:26:00 +0200
commita9d19dbdd6b7263c9a3df95c964c220798a8f2a8 (patch)
treeb775bef9c6bdc3d50aef49e0ce080e08df7511bd
parent12d713176fd0a412ff591e8c4d56c884e06f7d25 (diff)
docs: Even more about images.Process
-rw-r--r--docs/content/en/functions/images/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/en/functions/images/index.md b/docs/content/en/functions/images/index.md
index 76ff93cd1..779e2cc96 100644
--- a/docs/content/en/functions/images/index.md
+++ b/docs/content/en/functions/images/index.md
@@ -17,7 +17,7 @@ See [images.Filter](#filter) for how to apply these filters to an image.
{{< new-in "0.119.0" >}}
{{% funcsig %}}
-images.Overlay SRC SPEC
+images.Process SRC SPEC
{{% /funcsig %}}
A general purpose image processing function.
@@ -70,7 +70,7 @@ The OPACITY parameter must be in range (0, 1).
{{ $img := $img.Filter (images.Opacity 0.5 )}}
```
-Note that target format must support transparency, e.g. PNG. If the source image is e.g. JPG, the most effective way would be to combine it with the [`Process`] filter:
+This filter is most useful for target formats that support transparency, e.g. PNG. If the source image is e.g. JPG, the most effective way would be to combine it with the [`Process`] filter:
```go-html-template
{{ $png := $jpg.Filter