✅ 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
sure, why not?
given that it sounds like CPU-bound work, howsabout a
Parallel.ForEach()
?thx!