//Controller Code
MultipartMemoryStreamProvider content = await Request.Content.ReadAsMultipartAsync();
byte[] data = await content.Contents[0].ReadAsByteArrayAsync();
MagickImage Image = new MagickImage(data);
Image.Resize(200, 200);
In order to save the file to Azure Blob after resize. What should I do?
I will appreciate any help!