我正在从byte[]
下面的图像中构建图像。
public FileContentResult GetEmployeeImage(int empId)
{
MemoryStream ms = new MemoryStream(byteArray);
Image returnImage = Image.FromStream(ms);
return returnImage;//How should i return this image to be consumed by javascript.
}
我想通过控制器操作方法将此图像返回给浏览器,以便它可以被我的 javascript 代码使用并显示在浏览器中。我该怎么做?