mirror of
https://forge.katzen.cafe/katzen-cafe/iowo.git
synced 2024-11-05 15:26:24 +01:00
d79383a7df
The image crate is able to infer the format, so that data is redundant
17 lines
276 B
Plaintext
17 lines
276 B
Plaintext
(
|
|
instructions: {
|
|
0: Read((
|
|
source: File("testfiles/rails.png"),
|
|
)),
|
|
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)],
|
|
},
|
|
)
|