Send Image From Controller To View In MVC3

前端 未结 5 1302
说谎
说谎 2021-02-12 19:19

I am using asp.net mvc3. I am making a bitmap using text by system.drawing. I want
to send that image from my controller to my view in VIEWDATA, but in my view I cannot pars

5条回答
  •  鱼传尺愫
    2021-02-12 19:36

    Have you tried ContentResult.

    You can try something like following ( not verified)

    public ContentResult GetImage()
            {
                var content = new ContentResult();
                content.Content = "Image as String";
                content.ContentType = "image/jpg";
                return content;
            }
    

提交回复
热议问题