Skip to content

Instantly share code, notes, and snippets.

@MbarkT3STO
Created March 29, 2022 15:55
Show Gist options
  • Save MbarkT3STO/2bf992f1054e6770146bc14af868ea6f to your computer and use it in GitHub Desktop.
Save MbarkT3STO/2bf992f1054e6770146bc14af868ea6f to your computer and use it in GitHub Desktop.
static async Task ProcessImage(byte[] imageData)
{
await Task.Run(() =>
{
RotateImage(imageData);
DarkenImage(imageData);
BlurImage(imageData);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment