iowo/testfiles/invert.ron

18 lines
292 B
Text
Raw Normal View History

2024-01-01 20:18:56 +00:00
(
instructions: {
0: Read((
source: File("testfiles/rails.png"),
format: Png,
2024-01-01 20:18:56 +00:00
)),
1: Filter(Invert),
2: Write((
target: File("testfiles/gen/inverted.png"),
format: Png,
)),
},
edges: {
(on: 0, idx: 0): [(on: 1, idx: 0)],
(on: 1, idx: 0): [(on: 2, idx: 0)],
},
2024-01-01 20:18:56 +00:00
)