up vote 1 down vote favorite
2
share [g+] share [fb]

We are developing a WPF desktop application that is displaying images that are currently being fetched over HTTP.

The images are already optimised for quality/size but there is an obvious wait each time that the image is fetched.

Is there a way to cache images on the client so that they aren't downloaded each time?

link|improve this question

feedback

4 Answers

If you're just trying to cache within the same run, then a local dictionary could function as a runtime cache.

If you're trying to cache between application runs, it gets trickier.

If this is a desktop application, just save the cached images locally in the user's application data folder.

If it's an XBAP application (WPF in Browser), you'll only be able to setup a local cache in the user's Isolated Storage, due to security.

link|improve this answer
It is a desktop application. I will put that in the question. – Simon Hartcher Dec 10 '09 at 4:27
Well, in that case, just save the images in the app data folder for the user... – Reed Copsey Dec 10 '09 at 18:02
feedback
up vote 2 down vote accepted

I have solved this by creating a Binding Converter using the IValueConverter interface. Given that I tried to find a solid solution for this for at least a week, I figured I should share my solution for those with this problem in the future.

Here is my blog post: Image Caching for a WPF Desktop Application

link|improve this answer
feedback

i've read your blog, and that brought me to this (i think much easier) concept setup:

As you will noticed, i reused some of your code you shared, so i'll share mine back.

Create a new custom control called CachedImage.

public class CachedImage : Image
{
    private string _imageUrl;

    static CachedImage()
    {
        DefaultStyleKeyProperty.OverrideMetadata(typeof(CachedImage), new FrameworkPropertyMetadata(typeof(CachedImage)));
    }

    public string ImageUrl
    {
        get
        {
            return _imageUrl;
        }
        set
        {
            if (value != _imageUrl)
            {
                Source = new BitmapImage(new Uri(FileCache.FromUrl(value)));
                _imageUrl = value;
            }
        }
    }
}

Next i've made a FileCache class (so i have control on all caching not only images)

public class FileCache
{
    public static string AppCacheDirectory { get; set; }

    static FileCache()
    {
        // default cache directory, can be changed in de app.xaml.
        AppCacheDirectory = String.Format("{0}/Cache/", Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData));
    }

    public static string FromUrl(string url)
    {
        //Check to see if the directory in AppData has been created 
        if (!Directory.Exists(AppCacheDirectory))
        {
            //Create it 
            Directory.CreateDirectory(AppCacheDirectory);
        }

        //Cast the string into a Uri so we can access the image name without regex 
        var uri = new Uri(url);
        var localFile = String.Format("{0}{1}", AppCacheDirectory, uri.Segments[uri.Segments.Length - 1]);

        if (!File.Exists(localFile))
        {
            HttpHelper.GetAndSaveToFile(url, localFile);
        }

        //The full path of the image on the local computer 
        return localFile;
    }
}

Also for downloading content I made a helper class:

public class HttpHelper
{
    public static byte[] Get(string url)
    {
        WebRequest request = HttpWebRequest.Create(url);
        WebResponse response = request.GetResponse();

        return response.ReadToEnd();
    }

    public static void GetAndSaveToFile(string url, string filename)
    {
        using (FileStream stream = new FileStream(filename, FileMode.Create, FileAccess.Write))
        {
            byte[] data = Get(url);
            stream.Write(data, 0, data.Length);
        }
    }
}

The HttpHelper uses an extension on the WebResponse class for reading the result to an array

public static class WebResponse_extension
{
    public static byte[] ReadToEnd(this WebResponse webresponse)
    {
        Stream responseStream = webresponse.GetResponseStream();

        using (MemoryStream memoryStream = new MemoryStream((int)webresponse.ContentLength))
        {
            responseStream.CopyTo(memoryStream);
            return memoryStream.ToArray();
        }
    }
}

Now you got it complete, lets use it in xaml

<Grid>
    <local:CachedImage ImageUrl="http://host/image.png" />
</Grid>

That's all, it's reusable and robust.

The only disadvance is, that the image is never downloaded again until you cleanup the cache directory.

The first time the image is downloaded from the web and saved in the cache directory. Eventually the image is loaded from the cache and assign to the source of the parent class (Image).

Kind regards, Jeroen van Langen.

link|improve this answer
I really like your implementation. It is very well factored. Thanks – Simon Hartcher Mar 26 '11 at 15:03
feedback

Just a update from Jeroen van Langen reply,

You can save a bunch of line

remove HttpHelper class and the WebResponse_extension

replace

HttpHelper.GetAndSaveToFile(url, localFile);

by

WebClient webClient = new WebClient();
    webClient.DownloadFile(url, localFile);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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