如果这个问题太愚蠢或以前问过,请原谅我。我需要在我的网络应用程序中显示一个图像,图像作为字节存储在 db 中,我从字节生成图像但问题是当我在我的网络应用程序中显示它时,它溢出意味着图像帧大小是100x100,但图像以其实际分辨率出现。如何解决这个我当前的代码如下
控制器
[HttpPost]
public ActionResult ByteToImage()
{
ImageDL getImage = new ImageDL();
byte[] image = getImage.CreateImage();
return File(image,"Image/jpeg");
}
剃刀
<img alt="" src="@Url.Action("ByteToImage", "User")" height="100" width="100" />