vote up 19 vote down star
6

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 requested:

www.mywebsite.com/resource/image/topbanner

The controller will look up "topbanner.png" and send that image directly back to the client.

I've seen examples of this where you have to create a View -- I don't want to use a View. I want to do it all with just the Controller.

Is this possible?

flag

11 Answers

vote up 11 vote down check

A much cleaner way of doing this within the MVC paradigm is to return a FileResult from your controller method. With this approach, your controller isn't so tightly dependent on the Response object, making reuse/testing much easier.

On your controller:

using System.IO;

public FileResult Image() {
    string path = Server.MapPath("/Content/Images/Decorative/");
    string filename = Request.Url.Segments[Request.Url.Segments.Length - 1].ToString();

    // Uss Path.Combine from System.IO instead of StringBuilder.
    string fullPath = Path.Combine(path, filename);

    return(new FileResult(fullPath, "image/jpeg"));

}
link|flag
FileResult is an abstract class. How can you use it in this way? – Al Katawazi Jul 15 at 14:25
This will not compile. See my answer for more info... – Brian Aug 28 at 20:49
vote up 0 vote down

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.

link|flag
vote up -1 vote down

Look at ContentResult. This returns a string, but can be used to make your own BinaryResult-like class.

link|flag
vote up 0 vote down

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. :-)

link|flag
Yeah I just noticed ContentResult only supports strings, but it's easy enough to make your own ActionResult based class. – leppie Oct 9 '08 at 6:31
vote up 0 vote down

You certainly can. Try out these steps:

  1. Load the image from disk in to a byte array
  2. cache the image in the case you expect more requests for the image and don't want the disk I/O (my sample doesn't cache it below)
  3. Change the mime type via the Response.ContentType
  4. Response.BinaryWrite out the image byte array

Here's some sample code:

string pathToFile = @"C:\Documents and Settings\some_path.jpg";
byte[] imageData = File.ReadAllBytes(pathToFile);
Response.ContentType = "image/jpg";
Response.BinaryWrite(imageData);

Hope that helps!

link|flag
vote up -4 vote down

Is there a way to mark this question "resolved"?

I finally got it to work.

Here's what I did (within the Controller class):

public void Image()
{
    StringBuilder sb = new StringBuilder();

    string path = Server.MapPath("/Content/Images/Decorative/");
    string filename = Request.Url.Segments[Request.Url.Segments.Length - 1].ToString();

    sb.AppendFormat(@"{0}\{1}", path, filename);

    Response.WriteFile(sb.ToString(), true);
}

So basically, I didn't need to return an 'ActionResult'. It was sufficient to just write the file directly to the response.

link|flag
2  
So you just broke the MVC pattern... – leppie Oct 9 '08 at 6:58
vote up 1 vote down

You can write directly to the response but then it isn't testable. It is preferred to return an ActionResult that has deferred execution. Here is my resusable StreamResult:

public class StreamResult : ViewResult
{
    public Stream Stream { get; set; }
    public string ContentType { get; set; }
    public string ETag { get; set; }

    public override void ExecuteResult(ControllerContext context)
    {
    	context.HttpContext.Response.ContentType = ContentType;
    	if (ETag != null) context.HttpContext.Response.AddHeader("ETag", ETag);
    	const int size = 4096;
    	byte[] bytes = new byte[size];
    	int numBytes;
    	while ((numBytes = Stream.Read(bytes, 0, size)) > 0)
    		context.HttpContext.Response.OutputStream.Write(bytes, 0, numBytes);
    }
}
link|flag
vote up 4 vote down

I asked a similar question here http://stackoverflow.com/questions/155906/creating-a-private-photo-gallery-using-aspnet-mvc and ended up finding a great guide to do this.

I created an ImageResult class following this guide. http://blog.maartenballiauw.be/post/2008/05/ASPNET-MVC-custom-ActionResult.aspx

link|flag
use this guide! works great. just be aware you probably want to change the encoding parameters if your image files are too big – Simon Feb 15 at 22:08
vote up 13 vote down

Using the release version of MVC, here is what I do:

[AcceptVerbs(HttpVerbs.Get)]
[OutputCache(CacheProfile = "CustomerImages")]
public FileResult Show(int customerId, string imageName)
{
    var path = string.Concat(ConfigData.ImagesDirectory, customerId, @"\", imageName);
    return new FileStreamResult(new FileStream(path, FileMode.Open), "image/jpeg");
}

I obviously have some application specific stuff in here regarding the path construction, but the returning of the FileStreamResult is nice and simple.

I did some performance testing in regards to this action against your everyday call to the image (bypassing the controller) and the difference between the averages was only about 3 milliseconds (controller avg was 68ms, non-controller was 65ms).

I had tried some of the other methods mentioned in answers here and the performance hit was much more dramatic... several of the solutions responses were as much as 6x the non-controller (other controllers avg 340ms, non-controller 65ms).

link|flag
vote up 3 vote down

Use the base controllers File method.

public ActionResult Image(string id)
{
    var dir = Server.MapPath("/Images");
    var path = Path.Combine(dir, id + ".jpg");
    return base.File(path, "image/jpg");
}

As a note, this seems to be fairly efficient. I did a test where I requested the image through the controller (http://localhost/MyController/Image/MyImage) and through the direct url (http://localhost/Images/MyImage.jpg) and the results were:

  • MVC: 7.6 milliseconds per photo
  • Direct: 6.7 milliseconds per photo
link|flag
vote up 0 vote down

To expland on Dyland's response slightly:

Three classes implement the FileResult class:

System.Web.Mvc.FileResult
      System.Web.Mvc.FileContentResult
      System.Web.Mvc.FilePathResult
      System.Web.Mvc.FileStreamResult

They're all fairly self explanatory:

  • For file path downloads where the file exists on disk, use FilePathResult - this is the easiest way and avoids you having to use Streams.
  • For byte[] arrays (akin to Response.BinaryWrite), use FileContentResult.
  • For byte[] arrays where you want the file to download (content-disposition: attachment), use FileContentResult in a similar way to below, but with a MemoryStream and using GetBuffer().
  • For Streams use FileStreamResult. It's called a FileStreamResult but it takes a Stream so I'd guess it works with a MemoryStream.

Below is an example of using the content-disposition technique (not tested):

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult GetFile()
{
    using (FileStream stream = new FileStream(AppDomain.CurrentDomain.BaseDirectory + "/myimage.png"))
    {
    	FileStreamResult result = new FileStreamResult(stream, "image/png");
    	result.FileDownloadName = "image.png";
    	return result;
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.