Can an ASP.NET MVC controller return an Image?

前端 未结 19 1646
旧时难觅i
旧时难觅i 2020-11-22 02:10

Can I create a Controller that simply returns an image asset?

I would like to route this logic through a controller, whenever a URL such as the following is requeste

19条回答
  •  名媛妹妹
    2020-11-22 02:34

    You could use the HttpContext.Response and directly write the content to it (WriteFile() might work for you) and then return ContentResult from your action instead of ActionResult.

    Disclaimer: I have not tried this, it's based on looking at the available APIs. :-)

提交回复
热议问题