码迷,mamicode.com
首页 > Windows程序 > 详细

MVC4 WebAPI中如何返回一张图片

时间:2014-09-25 12:44:48      阅读:731      评论:0      收藏:0      [点我收藏+]

标签:http   ar   for   sp   on   c   ad   ef   r   

    public HttpResponseMessage Get(string imageName, int width, int height)
    {
        Image img = GetImage(imageName, width, height);
        MemoryStream ms = new MemoryStream();
        img.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
        HttpResponseMessage result = new HttpResponseMessage(HttpStatusCode.OK);
        result.Content = new ByteArrayContent(ms.ToArray());
        result.Content.Headers.ContentType = new MediaTypeHeaderValue("image/png");
        return result;
    }

MVC4 WebAPI中如何返回一张图片?

MVC4 WebAPI中如何返回一张图片

标签:http   ar   for   sp   on   c   ad   ef   r   

原文地址:http://www.cnblogs.com/gzalrj/p/3992321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!