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
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;
}