Can an ASP.NET MVC controller return an Image?

前端 未结 19 1881
旧时难觅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:38

    I see two options:

    1) Implement your own IViewEngine and set the ViewEngine property of the Controller you are using to your ImageViewEngine in your desired "image" method.

    2) Use a view :-). Just change the content type etc.

提交回复
热议问题