WebAPI c# - Azure上的Imagemagic

时间:2015-09-24 22:40:02

标签: c# azure imagemagick asp.net-web-api2 magick.net

            //Controller Code
            MultipartMemoryStreamProvider content = await Request.Content.ReadAsMultipartAsync();
            byte[] data = await content.Contents[0].ReadAsByteArrayAsync();
            MagickImage Image = new MagickImage(data);
            Image.Resize(200, 200);

为了在调整大小后将文件保存到Azure Blob。我该怎么办?

我将不胜感激任何帮助!

1 个答案:

答案 0 :(得分:1)

此文档不仅向您展示了如何做您想做的事情,而且还展示了适当的架构,以确保可扩展性。 http://www.hanselman.com/blog/IntroducingWindowsAzureWebJobs.aspx

如果您想直接在ASP.net线程上执行此操作,那么只需使用以下代码: https://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-blobs/