iowo/testfiles/invert.ron

14 lines
172 B
Plaintext
Raw Normal View History

2024-01-01 21:18:56 +01:00
(
[
Read((
source: File("testfiles/juan.jpg"),
2024-01-18 20:29:41 +01:00
format: Jpeg
2024-01-01 21:18:56 +01:00
)),
Filter(Invert),
Write((
target: File("testfiles/inverted.jpg"),
2024-01-01 21:18:56 +01:00
format: Jpeg
))
]
)