Click here to Skip to main content
15,884,099 members
Articles / Programming Languages / C#

A C# based thumbnail viewer

Rate me:
Please Sign up or sign in to vote.
3.53/5 (19 votes)
18 May 2007CPOL4 min read 93.7K   3.8K   54   26
A C# based thumbnail viewer employing a BackgroundWorker to load images in the background.

JThumbnailView Demo project

Introduction

Many a times we come across situations where it is required to show images from a directory as thumbnails. This control JThumnailView does exactly that. The additional feature of this control is that it uses a background worker to load images asynchronously.

Background

It all started when I wanted to send some photos back home electronically. Of course, I could do that using e-mails; however, when doing so, it would mostly be zipped and sent. When I saw my parents struggling to keep track of where they saved the photos for later viewing, I realised that I needed to provide them something which could be controlled by me. Hence, I started developing an application which once installed on a machine will serve as an automatic picture downloader and a basic viewer. Thus, I was faced with the following challenges:

  1. How to do an automatic download? My answer came in the form of the edtFTPnet component, with which I could go and download file(s) from an FTP server. However, this posed another problem: every time I want to send new photos, I needed some mechanism which would transparently do it without any manual intervention. That is when I decided to use an XML file which the application would read and perform the necessary action. However, once I started developing the XML file, I wanted to encrypt it and give a different extension. Hence, I used a DESCryptoServiceProvider to perform the encryption/decryption for the file. Now, all I have to do is send my file (which has a *.pfi extension) and give a password. When this file is double clicked, it will ask for a password and it will start downloading the photos automatically from my FTP site.
  2. The second challenge for me was to provide a simple photo viewer in the same application so that the user need not worry about where the photos are stored. For this, I needed two components: an Explorer-like folder viewer and a thumbnail viewer. That is when I got the WindowsExplorer component written by Rajesh Lal. Though I had to make a little modifications to suit my requirements, it saved me a lot of time.
  3. The only thing remaining was a thumbnail viewer. I searched for a good one, but most of them were for ASP.NET. Finally, I saw one, but again it was based on VC++. That is when I decided to write one. I made it a control so that others could re-use it. This article describes the JThumnailView component I created for this purpose. For those who want the full version of the application, please contact me by email. I will be more than happy to provide it (though it is still in the beta phase!!!).

Using the Code

The component is very simple to understand. It has been derived from the standard ListView control so that I need not worry about things like scrolling, sorting etc. :).

The following are the main properties:

C#
public int ThumbNailSize; //default value: 95

By default, it has a value of 95 (Windows Explorer seemed to use this size, so I made it the default).

C#
public int ThumbBorderColor; //default value: Color.Wheat

Set this if you want the thumbnails to have a different border.

C#
public string FolderName; //default value: Application folder

This is the directory from which the thumbnails are to be loaded. The component has another property CanLoad which should be set to true to load the images. This should be set to true on the constructor of the form.

One of the main problems with most of the thumbnail viewers is that if the number of files in a directory is high, then the viewer takes a lot of time to load. To avoid this, the technique I am using is to create a default thumbnail which is just a square of the thumbnail size and set this as the image-index for all the items. This will give the user an impression that the thumbnails have been loaded. Then the actual thumbnails are loaded in the background using a BackgroundWorker.

C#
private BackgroundWorker myWorker = new BackgroundWorker();

The loading of items is handled in the method ReloadItems().

C#
private void ReLoadItems() 
{ 
    BeginUpdate(); 
    Items.Clear(); 
    LargeImageList.Images.Clear(); 
    AddDefaultThumb(); 
    
    string strFilter = "*.jpg;*.png;*.gif;*.bmp"; 
    List fileList = new List(); 
    string[] arExtensions = strFilter.Split(';'); 
    
    foreach (string filter in arExtensions) 
    { 
        string[] strFiles = Directory.GetFiles(folderName, filter); 
        fileList.AddRange(strFiles); 
        for (int i = 0; i < strFiles.Length; i++) 
        { 
            FileInfo fiTemp = new FileInfo(strFiles[i]); 
            Items.Add(fiTemp.Name, 0).Tag = strFiles[i]; } 
        } 
        
        fileList.Sort(); 
        EndUpdate(); 
        if (myWorker != null) { myWorker.RunWorkerAsync(fileList); } 
    }
}

The AddDefaultThumb() method creates a default thumbnail as mentioned above. The actual thumbnails are drawn in the DoWork() event of the BackgroundWorker. The thumbnails are drawn using the usual graphic methods.

Points of Interest

The use of the BackgroundWorker definitely improved the efficiency of the viewer considerably. Another interesting thing was the use of PixelOffSetMode and InterpolationMode of the Graphics object. When I drew the thumbnails first, I could not match the clarity of the images in the Windows Explorer thumbnail. That is when I tried out the various PixelOffSetModes and the InterpolationModes. I achieved the desired result with the following combination:

C#
PixelOffsetMode = PixelOffsetMode.None;

InterpolationMode = InterpolationMode.HighQualityBicubic;

History

Version 1.1

Thanks for all the valuable comments, I have modified the component to include some more checks :). I have also modified the demo to include a minimal picture viewer. Thanks once again to all of you, especially Michael for his special interest and feedback. I still have not really tested dynamic dispose and creation, and hence not sure whether the problem is still there.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United Arab Emirates United Arab Emirates
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
yoke27-Aug-12 19:26
yoke27-Aug-12 19:26 
GeneralRe: My vote of 1 Pin
Russell Mangel18-Sep-19 9:09
Russell Mangel18-Sep-19 9:09 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey26-Feb-12 20:56
professionalManoj Kumar Choubey26-Feb-12 20:56 
GeneralNice, but... Pin
Doncp10-Jan-11 11:30
Doncp10-Jan-11 11:30 
Very Nice.

I have a directory of a large number of .JPG
files. When I double-click one of the thumbnails,
then use the arrow keys (Previous, Next) in
frmShowPicture, I get an OutOfMemory exception.

So, I had to dispose the bmp file in
GetThumbNail to avoid the OutOfMemory exception.

grp.DrawRectangle(pn, 0, 0, retBmp.Width - 1, retBmp.Height - 1);<br />
            bmp.Dispose();<br />
            return retBmp;

GeneralAbout the source code Pin
Cisily12-May-09 23:30
Cisily12-May-09 23:30 
GeneralStill inconsistency with the thumbnail and the filename Pin
martinmoesbypetersen10-Jan-09 0:24
martinmoesbypetersen10-Jan-09 0:24 
GeneralThumbnail Generation Pin
Member 352586317-Dec-08 22:09
Member 352586317-Dec-08 22:09 
GeneralMy vote of 1 Pin
Wertugo5558-Dec-08 21:53
Wertugo5558-Dec-08 21:53 
GeneralGreat Work!! Pin
Richard Blythe10-Oct-08 19:11
Richard Blythe10-Oct-08 19:11 
Generalfull version of the application Pin
Dush Abe3-Aug-08 19:55
Dush Abe3-Aug-08 19:55 
GeneralError Pin
mfmanca30-Oct-07 9:57
mfmanca30-Oct-07 9:57 
GeneralRe: Error Pin
Edward Ceballos29-May-08 22:41
Edward Ceballos29-May-08 22:41 
Generalgetting filename of selected items Pin
Elsys19-Oct-07 18:05
Elsys19-Oct-07 18:05 
GeneralStop BackGroundWorker Pin
fracasado31-Aug-07 7:56
fracasado31-Aug-07 7:56 
GeneralRe: Stop BackGroundWorker Pin
Sreejai R. Kurup31-Aug-07 18:30
Sreejai R. Kurup31-Aug-07 18:30 
Questioncan this be modded to work for mpeg thumbnails ? Pin
UltraWhack31-May-07 7:09
UltraWhack31-May-07 7:09 
AnswerRe: can this be modded to work for mpeg thumbnails ? Pin
Sreejai R. Kurup31-May-07 18:03
Sreejai R. Kurup31-May-07 18:03 
GeneralRe: can this be modded to work for mpeg thumbnails ? Pin
UltraWhack1-Jun-07 2:22
UltraWhack1-Jun-07 2:22 
GeneralBug: Thumbnail image inconsistency with real image Pin
mpgjunky17-May-07 6:06
mpgjunky17-May-07 6:06 
GeneralCrashes if you make it start loading new thumbnails before it's finished Pin
misterhaan11-Apr-07 7:40
misterhaan11-Apr-07 7:40 
GeneralBackgroundWorker Pin
BushRob27-Mar-07 12:11
BushRob27-Mar-07 12:11 
GeneralRe: BackgroundWorker Pin
Sreejai R. Kurup4-Apr-07 19:48
Sreejai R. Kurup4-Apr-07 19:48 
GeneralRe: BackgroundWorker Pin
wmhp120-Apr-07 12:15
wmhp120-Apr-07 12:15 
AnswerRe: BackgroundWorker [modified] Pin
mpgjunky17-May-07 6:18
mpgjunky17-May-07 6:18 
GeneralNo source code Pin
GaryWoodfine 24-Feb-07 21:53
professionalGaryWoodfine 24-Feb-07 21:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.