我有一个视图来显示特定模型的信息。
在该信息中,我有一个图像,它是一个字节的数组。
现在我想显示该图像。
我认为这是
<img src="@Url.Action("getImg", "Image", new { image = Model.image })" />
注意Image控制器不是当前视图所属的同一个控制器
请问我哪里错了?
所有其他信息都正确显示。
编辑
这是我要调用的控制器
public class ImageController : Controller
{
//
// GET: /Image/
public ActionResult Index()
{
return HttpNotFound();
}
// To convert the Byte Array to the image
public FileContentResult getImg(byte[] image)
{
if (image != null)
{
return new FileContentResult(image, "image/jpeg");
}
else
{
return null;
}
}
}