mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
35 lines
592 B
Markdown
35 lines
592 B
Markdown
|
---
|
||
|
title: images.Invert
|
||
|
description: Returns an image filter that negates the colors of an image.
|
||
|
categories: []
|
||
|
keywords: []
|
||
|
action:
|
||
|
aliases: []
|
||
|
related:
|
||
|
- functions/images/Filter
|
||
|
- methods/resource/Filter
|
||
|
returnType: images.filter
|
||
|
signatures: [images.Invert]
|
||
|
toc: true
|
||
|
---
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Create the filter:
|
||
|
|
||
|
```go-html-template
|
||
|
{{ $filter := images.Invert }}
|
||
|
```
|
||
|
|
||
|
{{% include "functions/images/_common/apply-image-filter.md" %}}
|
||
|
|
||
|
## Example
|
||
|
|
||
|
{{< img
|
||
|
src="images/examples/zion-national-park.jpg"
|
||
|
alt="Zion National Park"
|
||
|
filter="Invert"
|
||
|
filterArgs=""
|
||
|
example=true
|
||
|
>}}
|