I have a .NET Core API that returns an Image:
[HttpGet] public IActionResult GetImage() { return File("Image bytes", "image/jpeg"); }