I'm getting an image in a byte array format from the controller, How can I display this in the view? in the simplest way.
|
|
|
Create a controller for displaying images with a Show action that takes the id of the image to display from the database. The action should return a FileResult that contains the image data with the appropriate content type.
In your view, construct the image and use the image id to construct a path for the image using the controller and action.
|
|||||||
|
|
|
I know this post is rather old but it was one of the first that came up when i was trying to figure out how to do this for the most part Augi answer was correct but most of the assemblies are out dated
this is the code i wrote that works for me for displaying an image from a db field of type image in my controller class which i called store i have this
now for my view page i tried al kinds of ways i found in these forms and nothing worked i am assuming they were just outdated so i tried on a whim the simplest of all thing i could think of and it worked perfectly
i kept getting an error from the site about posting img tags so make sure you change the above image to img hope that helps stop anyone from hunting all day for a current answer http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30886 |
||||
|
|
public ActionResult EmployeeImage(int id)
{
byte[] imageData ="Retrieve your Byte[] data from database";
if (imageData!= null && imageData.Length > 0)
{
return new FileStreamResult(new System.IO.MemoryStream(imageData), "image/jpeg");
}
}
|
|||
|
|
|
Assuming you have a dataRow (dr) with two columns, "name" and "binary_image" (binary_image contains the binary info)
|
|||
|
|