📅  最后修改于: 2022-03-11 14:48:47.181000             🧑  作者: Mango
[HttpGet]
public IActionResult Get()
{
Byte[] b = System.IO.File.ReadAllBytes(@"E:\\Test.jpg"); // You can use your own method over here.
return File(b, "image/jpeg");
}