如何在MVC4中将字节[]显示为图片

时间:2012-07-13 16:56:10

标签: asp.net-mvc image

我有一个包含Byte []类型属性的模型。我想在html标签的MVC View中显示这个属性。我可以用什么方法来显示这个图像?

2 个答案:

答案 0 :(得分:9)

这是我在项目中需要做的事情: 对于我的对象集合的每个实例,我将下面的标记放在Razor View

<img src="@Url.Action("GetPhoto", new { photoId = Model.PhotoId })" />

然后在Controller中我添加了一个Action:

public ActionResult GetPhoto(int photoId)
{
    byte[] photo = GetPhotoFromDb(photoId);
    return File(photo, "image/jpeg"); }

答案 1 :(得分:7)

在控制器上创建一个操作以返回文件响应:

public class MyController : Controller
{
    public ActionResult ViewFile()
    {
        byte[] bytes;
        string mime;

        return File(bytes, mime);
    }
}

然后您可以像这样显示图像:

<img src="/mycontroller/viewfile" />

编辑: 一个详细的例子:

public class Photo
{
    public int ID {get;set;}
    public string Title {get;set;}
}

public class PhotoController : Controller
{
    public ActionResult Index()
    {
        return View(new List<Photo> { new Photo { ID = 1, Title = "first" }, new Photo { ID = 2, Title = "second" }});
    }
    public ActionResult Photo(int ID)
    {
        return File(GetPhotoBytes(ID), "image/jpg");
    }
}

查看:

@model IEnumerable<Photo>
@foreach (var photo in Model)
{   
    <img src="@Url.Action("photo", "photo", new { ID = photo.ID })" title="@photo.Title" /> 
}