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:
- 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.
- 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.
- 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:
public int ThumbNailSize;
By default, it has a value of 95 (Windows Explorer seemed to use this size, so I made it the default).
public int ThumbBorderColor;
Set this if you want the thumbnails to have a different border.
public string FolderName;
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
.
private BackgroundWorker myWorker = new BackgroundWorker();
The loading of items is handled in the method ReloadItems()
.
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 PixelOffSetMode
s and the InterpolationMode
s. I achieved the desired result with the following combination:
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.