Click here to Skip to main content
15,881,861 members
Articles / Desktop Programming / MFC

Image Cataloguer

Rate me:
Please Sign up or sign in to vote.
4.89/5 (10 votes)
11 Feb 2013CPOL5 min read 36.9K   2.1K   16   10
Automatically catalogue images based on modified date

Introduction

If you are like me, then you probably have your picture library organised in folders based on some criteria. It will be most likely catalogued by date. Personally, I prefer to have my library organised similar to the screenshot below:

Image 1

I bet that it is quite a task to transfer the files from your camera.

Background

I am using Total Commander as a file manager of my choice. Recently, I asked on their forum if they could include an add-on that will allow cataloguing. Apparently, you can do it using a built-in tool (someone suggested a two-step process using some scripts).

Anyway, I had a spare couple hours on Friday night when I finished a project and did not want to start a new project. So, I wrote a small tool that takes the files from a source folder and copies them to a target folder based on the files' dates.

After a week of using the first version, I decided to enhance it a little bit. First of all, I moved the file copy function to a separate thread. Then I added some more useful features.

As a result, this program has been created:

Image 2

Audience

This article targets beginners that are just making their first steps in Desktop Development using MFC. The code demonstrates how to use these MFC controls:

  • CMFCEditBrowseCtrl
  • CProgressCtrl
  • CListCtrl
  • CImageList
  • CEdit
  • CComboBox
  • CStatic

The article also demonstrates how to use Windows Auto-Complete feature for the file-system based edit boxes. I am using my own helper class CAutoCompleteHelper that you may find useful in your own projects.

The code also demonstrates how to use CWinThread class to perform operations in a separate thread. The thread is synchronised using a CEvent class (you can interrupt the lengthy process by clicking on Close button).

You will learn how to use a callback function when copying big files to display the copy process and to interrupt if required.

Best of all, if you are not into MFC programming, you can just use the tool, that I have also included with the article.

Please note that the minimum Operating System required is Windows XP SP3.

Program Features

The program saves all the input parameters to an INI file on exit. I have also implemented a smart feature (I hope I did not overdo it) that automatically re-initialise the First Image File value to the next file followed after the Last Image File used in the previous session. The way I use it and I can see it being used is that you will just pop a memory card from your camera in from time to time, open the program and click on Catalog Images button.

In version 1.1, I have implemented a feature to scan for the new subfolders in the input folder. The reason for this is simple - I have a new camera. It is a Nikon. For some reason, they insist on having a maximum of 200 photos in each folder. Now when you select a photo in one subfolder, the program will automatically build a list with all the photos from this subfolder, and all subsequent subfolders.

Using the Code

IDE

The program is written in Visual Studio 2012. I have decided to use VS2012 to take advantage of the new control CMFCEditBrowseCtrl. It turned out that the control does not provide the auto-complete functionality, as I expected. You still need to use SHAutoComplete API.

Auto-Complete

I have written a special helper class for setting up the auto-complete. All you need is to create an instance of this class in the dialog class and setup the auto-complete for the required controls.

C++
m_autoComplHlpr.SetAutoComplete(&m_edFileFirst, CAutoCompleteHelper::AutoCompleteFileSys);
m_autoComplHlpr.SetAutoComplete(&m_edFileLast,  CAutoCompleteHelper::AutoCompleteFileSys);
m_autoComplHlpr.SetAutoComplete(&m_edOutFolder, CAutoCompleteHelper::AutoCompleteFileSys);   

Image 3

Communication Between Threads

Everyone knows that it is a good practice to use Windows Messages for inter-thread communication. Of course, we all take shortcuts by passing a pointer of the dialog class to the thread function as a parameter. However, every single manual will tell you that it is not a very good idea. This program is written with this in mind and shows a good practice.

The thread communicates with the GUI using these two messages:

C++
#define WM_MY_COPY_PROGRESS    (WM_USER + 1)
#define WM_MY_COPY_FINISHED    (WM_USER + 2) 

The former is the message that is sent for each copied file, and the latter is the message to indicate that the process is finished.

In the main dialog class, these message handlers are specified. The handler for the copy progress has three states:

C++
afx_msg LRESULT CImageCataloguerDlg::OnCopyProgress(WPARAM wParam, LPARAM lParam)
{
	MyCopyProgressParm* pParm = (MyCopyProgressParm*) lParam;
	if (wParam == MY_COPY_PROGRESS_PRE)
	{
		// before copying
	}
	else if(wParam == MY_COPY_PROGRESS_CHUNK)
	{
		// When a big file is being copied
	}
	else
	{
		// after copying. Error or Success
	}
 
	return 0;
} 

The handler for the process finish is used to display some messages to the user:

C++
afx_msg LRESULT CImageCataloguerDlg::OnCopyFinished(WPARAM wParam, LPARAM lParam)
{
}

Thread Synchronisation

A CEvent is used for thread synchronisation. I have created a member variable in the main dialog class that is declared as:

C++
CEvent *m_pStopEvent;  

The event is used to stop the copy process if at any time during the copy process you have realised that you have specified wrong mask of input/output folders.

References

This program uses other people's work. I would like to acknowledge their efforts and thank them for their fantastic work.

  • The main dialog class is derived from CResizeDlg by Robert Python.
  • The main application icon and error/success icons in the list control are from the free iconset by the team of artists called Oxygen Team.

Points of Interest

While making the program, I discovered that FindFirstFile/FindNextFile APIs (and their CFileFind MFC wrapper) do not support multiple masks. I ended up searching for the files in the loop for each individual mask. You may enhance the program by searching for all files (*.*) and then filtering the files in the code.

The program can be enhanced in many ways. You may use a nice Cexif class written by Davide Pizzolato to get the Date Taken from the image file and use it for cataloguing.

You can also put a Image Previewer control on the form with a few lines of code.

History

  • 8 Oct 2012: Version 1.0 posted
  • 12 Feb 2013: Version 1.1. Enhanced to automatically scan for the images in new subfolders (next subfolders by name)
  • 27 Sep 2013: Version 1.1. Rebuilt the application using Visual Studio 2012 - Windows XP (v110_xp) platform toolset
  • 6 Oct 2014: Version 1.2. Added a new feature: Allow to select Copy or Move operation with an ability to overwrite existing files. Also added a status text indicating how many files were copied/moved during the last opration

License

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


Written By
Software Developer (Senior)
Australia Australia
Andrew has written his first program on a Z80 in Basic when he was only 13. It was long before first Windows was born. And when Windows 95 came into being Andrew loved the technology straight away. He taught himself C and C++ and became a devoted Windows Software Developer.

Comments and Discussions

 
SuggestionNice, but would be better with a few addons Pin
fblaha16-Sep-14 4:31
fblaha16-Sep-14 4:31 
AnswerRe: Nice, but would be better with a few addons Pin
chaau5-Oct-14 14:48
chaau5-Oct-14 14:48 
NewsRe: Nice, but would be better with a few addons Pin
chaau6-Oct-14 12:46
chaau6-Oct-14 12:46 
GeneralRe: Nice, but would be better with a few addons Pin
fblaha6-Oct-14 13:03
fblaha6-Oct-14 13:03 
GeneralNice! Pin
Ravi Bhavnani26-Sep-13 14:28
professionalRavi Bhavnani26-Sep-13 14:28 
Question[My vote of 1] Not a valid Win32 Application. Pin
Epicu26-Sep-13 10:54
Epicu26-Sep-13 10:54 
AnswerRe: [My vote of 1] Not a valid Win32 Application. Pin
chaau26-Sep-13 12:33
chaau26-Sep-13 12:33 
QuestionOrganise photos Pin
VSTenev15-Jan-13 12:41
VSTenev15-Jan-13 12:41 
GeneralMy vote of 3 Pin
logica8-Oct-12 0:39
logica8-Oct-12 0:39 
GeneralRe: My vote of 3 Pin
chaau8-Oct-12 2:01
chaau8-Oct-12 2:01 

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.