我以二进制格式在数据库中存储了一些图像,现在我想在我的视图中显示这些图像,我们如何将这些图像从二进制格式再次转换为图像格式?
这是我在控制器中的操作方法
public ActionResult DislpayAllImage()
{
DataSet dsa = new DataSet();
dsa = objImage.getAllImages();
DataTable dt = new DataTable();
dt = dsa.Tables[0];
if (dt != null)
{
for (int i = 0; i < dt.Rows.Count; i++)
{
Byte[] image = (Byte[])dt.Rows[i]["UsImage"];
return File(image, "image/jpg");
}
}
return View();
}
这是我在模型中的代码
public DataSet getUserImage(int Id)
{
DataSet ds = new DataSet();
try
{
DbCommand db = dbcon.GetStoredProcCommand("GetImage");
dbcon.AddInParameter(db, "@Id", DbType.Int16, Id);
db.CommandType = CommandType.StoredProcedure;
return ds = dbconstr.ExecuteDataSet(dbCmd);
}
catch(Exception ex)
{
return ds = null;
}
}
看法
@foreach( var image in ViewData.Images )
{
<img src="@Url.Action("DislpayImage", "Home",new { id = image.ImageID })" />
}
我怎样才能在剃刀视图中显示我的图像,上面的代码也可以吗?