Click here to Skip to main content
6,905,855 members and growing! (20,732 online)
Email Password   helpLost your password?
Desktop Development » Combo & List Boxes » General     Intermediate

Thumbnails Viewer using ListCtrl

By moah

Show thumbnails of images, include JPG, TIFF, BMP, etc.
VC6, VC7, VC7.1Win2K, WinXP, MFC, Dev
Posted:14 Sep 2003
Updated:27 Jan 2006
Views:260,224
Bookmarked:145 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
62 votes for this article.
Popularity: 8.18 Rating: 4.56 out of 5
4 votes, 6.6%
1

2
1 vote, 1.6%
3
12 votes, 19.7%
4
44 votes, 72.1%
5

Sample Image - ThumbViewer.jpg

Introduction

There are several image libraries and sources currently available. So I made my mind up to make a free Image Viewer using a free image library, and I got many free demo programs. I think a good image viewer must be able to show thumbnail images in a selected directory. I found some sources showing thumbnails, but they didn't support several formats, only BMP files. This thumbnail viewer is based on CxImage, so if there is an image format supported by CxImage, this viewer also supports that format.

Implementation

I want to show you the core part in this article. How to make a CListCtrl, CImageList, and then how to load images and attach that image to an ImageList.

1. Creating CListCtrl and CImageList

I used a CListView instead of CListCtrl, but you know that CListView uses CListCtrl internally. So overriding Create(...) will make your icon view CListCtrl initially. And then on OnInitialUpdate(), make ImageList which can support 24 bit color images and attach to CListCtrl.

return CListView::Create(lpszClassName, _T("ListView"),
  dwStyle|LVS_SHOWSELALWAYS|LVS_ALIGNTOP|LVS_ICON|LVS_SINGLESEL|
  LVS_AUTOARRANGE, rect, pParentWnd, nID, pContext);

....
m_ImageListThumb.Create(THUMBNAIL_WIDTH, THUMBNAIL_HEIGHT, ILC_COLOR24, 0, 1);
 ListCtrl.SetImageList(&m_ImageListThumb, LVSIL_NORMAL);

2. Load Images and Insert Items

Create a Compatible DC and a Bitmap Handle. Stretch a loaded image to the Bitmap Handle and then attach it to CBitmap. Finally, replace CBitmap with an image in the ImageList.

unsigned __stdcall CThumbViewerView::LoadThumbNail(LPVOID lpParam)
{
 CThumbViewerView* pView=(CThumbViewerView*)lpParam;
 CThumbViewerDoc* pDoc=pView->GetDocument();

 CListCtrl& ListCtrl=pView->GetListCtrl();
 CImageList* pImgList=&pView->m_ImageListThumb;

 // reset our image list

 for(int i=0; i<pImgList->GetImageCount(); i++)
  pImgList->Remove(i); 

 // remove all items from list view

 ListCtrl.DeleteAllItems();

 pImgList->SetImageCount(pDoc->m_vFileName.size());

 char path[MAX_PATH];
 vector<CString>::iterator iter;
 
 // Set redraw to FALSE to avoid flickering during adding new items

 ListCtrl.SetRedraw(FALSE);
 int nIndex=0;
 for(iter=pDoc->m_vFileName.begin(); 
     iter!=pDoc->m_vFileName.end() && pView->m_bTerminate!=true; 
     iter++, nIndex++)
 {
          ListCtrl.InsertItem(nIndex, *iter, nIndex);
 }

 ListCtrl.SetRedraw(TRUE);
 ListCtrl.Invalidate();

 // Create Brushes for Border and BackGround

 HBRUSH hBrushBorder=::CreateSolidBrush(RGB(192, 192, 192));
 HBRUSH hBrushBk=::CreateSolidBrush(RGB(255, 255, 255));

 // Border Size

 RECT rcBorder;
 rcBorder.left=rcBorder.top=0;
 rcBorder.right=THUMBNAIL_WIDTH;
 rcBorder.bottom=THUMBNAIL_HEIGHT;

 const float fRatio=(float)THUMBNAIL_HEIGHT/THUMBNAIL_WIDTH;

 int XDest, YDest, nDestWidth, nDestHeight;
 nIndex=0;
 for(iter=pDoc->m_vFileName.begin(); 
     iter!=pDoc->m_vFileName.end() && pView->m_bTerminate!=true; 
     iter++, nIndex++)
 {
  // Load Image File

  sprintf(path, "%s\\%s", pDoc->m_strCurrentDirectory, *iter);

  int nImageType=pDoc->GetTypeFromFileName(path);
  if(nImageType==CXIMAGE_FORMAT_UNKNOWN)
   continue;

  CxImage image(path, nImageType);

  if(image.IsValid()==false)
   continue;

  // Calculate Rect to fit to canvas

  const float fImgRatio=(float)image.GetHeight()/image.GetWidth();
  if(fImgRatio > fRatio)
  {
   nDestWidth=THUMBNAIL_HEIGHT/fImgRatio;
   XDest=(THUMBNAIL_WIDTH-nDestWidth)/2;
   YDest=0;
   nDestHeight=THUMBNAIL_HEIGHT;
  }
  else
  {
   XDest=0;
   nDestWidth=THUMBNAIL_WIDTH;
   nDestHeight=THUMBNAIL_WIDTH*fImgRatio;
   YDest=(THUMBNAIL_HEIGHT-nDestHeight)/2;
  }

  CClientDC cdc(pView);
  HDC hDC=::CreateCompatibleDC(cdc.m_hDC);
  HBITMAP bm = CreateCompatibleBitmap(cdc.m_hDC, THUMBNAIL_WIDTH, 
                                      THUMBNAIL_HEIGHT);
  HBITMAP pOldBitmapImage = (HBITMAP)SelectObject(hDC,bm);
  // Draw Background

  ::FillRect(hDC, &rcBorder, hBrushBk);

  // Draw Image

  image.Stretch(hDC, XDest, YDest, nDestWidth, nDestHeight);

  // Draw Border

  ::FrameRect(hDC, &rcBorder, hBrushBorder);

  SelectObject(hDC, pOldBitmapImage);

  // Attach to Bitmap and Replace image in CImageList

  CBitmap bitmap;
  bitmap.Attach(bm);
  pImgList->Replace(nIndex, &bitmap, NULL);

  // Redraw only a current item for removing flickering and fast speed.

  ListCtrl.RedrawItems(nIndex, nIndex);

  // Release used DC and Object

  DeleteDC(hDC);
  DeleteObject(bm);
 }
 DeleteObject(hBrushBorder);
 DeleteObject(hBrushBk);

 ListCtrl.Invalidate();
 pView->m_bRunning=false;
 pView->m_bTerminate=false;

 _endthreadex( 0 );

 return 0;
}

Acknowledgment

You can download CxImage freely from here.

History

  • Ver. 1.0  15, Sep. 2003
    • First release.
  • Ver. 1.1  24, Mar. 2005
    • Fixed crashing when changing a directory fast.
    • Supports Unicode option using preprocessor _UNICODE.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

moah


Member
Youngjin Kim lives in South Korea. I'm interested in every part of Computer Science, cause it has not been long time since graduate a University.
But now I'm working and researching on Pattern Recognition. Using that trying to recognize a Handwriting Prints. Korean and Chinese are my interesting Research Part.
Occupation: Web Developer
Location: Korea (Republic Of) Korea (Republic Of)

Other popular Combo & List Boxes articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 144 (Total in Forum: 144) (Refresh)FirstPrevNext
Generalhello, I came across one question. I need your help... Pinmembercciill7:42 5 Sep '09  
GeneralWhy can't I hide the VScroll in listctrl??? PinmemberSophia2922:30 25 Nov '08  
GeneralDatagrid thumbnail images Pinmemberskyair16:49 29 Jun '08  
GeneralHai PinmemberSivan Manimala0:09 3 Jun '08  
GeneralPossible to only highlight name and not picture? Pinmemberalan9311:09 29 May '08  
I'm using a parallel list box for selecting images in the thumbnail list viewer. However when I select one , its hard to see the images when they are highlighted.
I wonder how it could be made so that it doesn't highlight the image, just the name?

Also, would it be possible to not include ".jpg" on end of items and still have them display?
GeneralRe: Possible to only highlight name and not picture? PinmemberDevoraNur21:51 24 Oct '09  
GeneralRe: Possible to only highlight name and not picture? Pinmemberalan933:44 28 Oct '09  
General안녕하세요~ [modified] Pinmemberrider7616:22 17 Mar '08  
Generalhow can do it Pinmemberthrudoor0:27 28 Nov '07  
GeneralMore smooth Picture! PinmemberOpenGL_VC21:40 5 Apr '07  
GeneralRe: More smooth Picture! Pinmembermoah21:58 14 May '07  
GeneralLINK : fatal error LNK1181: cannot open input file "./lib/cximagecrtu.lib" PinmemberSKhokalay0:46 7 Dec '06  
GeneralLINK : fatal error LNK1181: cannot open input file "./lib/cximagecrtu.lib" PinmemberSKhokalay0:51 7 Dec '06  
GeneralRe: LINK : fatal error LNK1181: cannot open input file "./lib/cximagecrtu.lib" Pinmembercristitomi0:32 5 Apr '07  
GeneralRe: LINK : fatal error LNK1181: cannot open input file "./lib/cximagecrtu.lib" PinmemberSon Ji Seon4:28 26 May '09  
QuestionProblems in adding a new bar. Pinmemberperhapszy23:18 2 Aug '06  
AnswerRe: Problems in adding a new bar. Pinmembermoah20:20 4 Aug '06  
GeneralRe: Problems in adding a new bar. Pinmemberperhapszy23:40 7 Aug '06  
Questionlill more help plz Pinmembertahinn20:16 6 Jul '06  
AnswerRe: lill more help plz Pinmembermoah8:07 8 Jul '06  
GeneralRe: lill more help plz Pinmembertahinn3:50 12 Jul '06  
QuestionI can't build with Visual C++ 8 (2005) PinmemberAnderson Luís18:34 5 Jul '06  
AnswerRe: I can't build with Visual C++ 8 (2005) Pinmembermoah7:53 8 Jul '06  
GeneralRe: I can't build with Visual C++ 8 (2005) Pinmembertdjdyq20:26 23 Jul '08  
GeneralRe: I can't build with Visual C++ 8 (2005) Pinmemberwissli0:00 12 Jan '10  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

PermaLink | Privacy | Terms of Use
Last Updated: 27 Jan 2006
Editor: Smitha Vijayan
Copyright 2003 by moah
Everything else Copyright © CodeProject, 1999-2010
Web11 | Advertise on the Code Project