C
C#8mo ago
Izagawd

✅ Mutate multiple images at once (sixlabors)

is there a way to mutate multiple images at once, kinda like how u can performs multiple asynchorous operations and wait for all of them to finish with Task.WhenAll?
2 Replies
JakenVeina
JakenVeina8mo ago
sure, why not? given that it sounds like CPU-bound work, howsabout a Parallel.ForEach()?
Izagawd
Izagawd8mo ago
thx!