5,136,034 members and growing! (12,449 online)
Email Password   helpLost your password?
Multimedia » GDI+ » General     Intermediate

Thumbnail Generator - An easy way to process thumbnails from a large amount of images

By Christian Ballerstaller

Thumbnail Generator application supporting a bunch of image file types (for both: source images and target thumbnails), fixed target image size as well as ratio calculation, and full internationalization.
C#Windows, .NET, .NET 1.0, NT4, Win2K, WinXPVS.NET2002, VS, Dev

Posted: 9 Mar 2003
Updated: 9 Mar 2003
Views: 112,690
Announcements



Search    
Advanced Search
Sitemap
10 votes for this Article.
Popularity: 4.00 Rating: 4.00 out of 5
2 votes, 20.0%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
2 votes, 20.0%
4
6 votes, 60.0%
5

Sample Image - ThumbGenerator/ThumbGenerator.png

Introduction

I have always had problems generating thumbnails from a large amount of images quickly and easily. Also standard graphic programs couldn't meet my needs - or it simply took too much time handling image after image.

Benefits

This Thumbnail Generator is qualified for generating thumbnails of images you are publishing on the Internet. Pre-generated thumbnails save you processor utilization and disk space (if you're generating thumbnails on the fly) - or user's time and money.

But also converting a large amount of images from one file format to another can be handled easily.

This project might also be an interesting starting point for Win Form rookies. Learn how forms, simple internationalization support and XML are working together! Just download the project source code, all source files are commented.

Supports

Image support

  • Different file formats (BMP, GIF, JPEG, PNG, TIFF) - for both: source images and target thumbnails
  • Self specified thumbnail image extensions
  • Preview of source images and output thumbnails (including information on width, height, ratio)
  • Fixed width, height as well as maintaining aspect ratio
  • Bilinear re-sampling

Generating a ListBox item:

/* Retrieve image to get it's infos */
Image LbxSourceImage = Image.FromFile(filesFromDialog[i]);
imgList.Images.Add(LbxSourceImage);


/* Calculate image ratio */
float Ratio=((float)LbxSourceImage.Width)/((float)LbxSourceImage.Height); 

/* Generates Listboxitem */
ImageListBoxItem lbxItem = new ImageListBoxItem(
    filesFromDialog[i].ToString()+                /* Filename */
    "\r\n"+txtWidth+LbxSourceImage.Width.ToString()+    /* Width    */
    ", "+txtHeight+LbxSourceImage.Height.ToString()+    /* Height   */
    ", "+txtRatio+Ratio.ToString(),i);            /* Ratio    */

lbxSource.Items.Add(lbxItem);

Multilingual support

Also full multilingual support for English and German language is provided. (Feel free to contribute other translations ;) )

Internationalization is managed via XML. All GUI texts are read on startup, from the application configuration file (of course the language can also be changed during a session). The project includes a collection of useful methods for processing XML documents. You can easily use them for your own applications.

The configuration file looks like:

<?xml version="1.0" encoding="UTF-16"?>
<!DOCTYPE Application SYSTEM "Config.dtd">
<Application>
  <Information>
    <Name>Thumbnail Generator</Name>
    <Version>0.8</Version>
  </Information>
  <StdLanguage Type="en"/>
  <Language Type="en">
    <Text GUIRelation="btnGenerateThumb">Generate Thumbnails -->

Within the application the language information is fetched via XPath. Sample calls:

XPathDocument XPathDoc = new XPathDocument(configFileName);
XPathNavigator nav     = XPathDoc.CreateNavigator();

gbxSource.Text = XmlManager.GetValueFromXPath(nav, 
          "/Application/Language[@Type='"+
          CurrentLang+"']/Text[@GUIRelation='gbxSource']");
gbxTarget.Text = XmlManager.GetValueFromXPath(nav, 
          "/Application/Language[@Type='"+
          CurrentLang+"']/Text[@GUIRelation='gbxTarget']");

History

  • 09. March 2003: Initial release. See section "Supports"

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

Christian Ballerstaller


Experience:
- Java
- C#
- XML, XSL, PHP, ASP, ASP.NET
- Server administration

- ASM, Visual Basic (poor)
- Linux (poor)

If you have any offers, questions, or project ideas please feel free to contact me.

If you experience any bugs in my software, please report them.

Thank you.
Occupation: Web Developer
Location: Germany Germany

Other popular GDI+ articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 19 of 19 (Total in Forum: 19) (Refresh)FirstPrevNext
Subject  Author Date 
Generalsending the Image to another functionmemberdogmatic693:43 7 Nov '07  
GeneralHere's the spanish translation and some commentsmemberbauersachs4:08 11 Dec '06  
Generaldelete files that add to imageList boxmembernazli4:22 28 Aug '06  
QuestionHELPPPPPPPPPPPPPmemberseapigg7:47 16 Jul '06  
Generaluse ratio to make images look bettermemberdjohnson1493:55 6 Dec '05  
GeneralI-Load - thumbnail generator free componentmemberzioturo1:59 3 Nov '05  
GeneralA generic error occurred in GDI+memberPaul Novelli7:11 9 Jul '05  
GeneralRe: A generic error occurred in GDI+memberdogmatic693:25 7 Nov '07  
Generalsource of the dll??membermistery229:51 18 Oct '03  
GeneralCannot find file exceptionsussC# Beginner18:48 20 Apr '03  
GeneralControls library?memberTodd Smith5:20 11 Mar '03  
GeneralRe: Controls library?memberperlmunger10:53 11 Mar '03  
GeneralRe: Controls library?memberChristian Ballerstaller11:06 11 Mar '03  
GeneralirfanviewmemberLoneRanger22:28 10 Mar '03  
GeneralRe: irfanviewmemberChristian Ballerstaller11:12 11 Mar '03  
GeneralRe: irfanviewmemberjstephenson177116:23 22 Jan '04  
GeneralRe: irfanviewmemberTodd C. Gleason14:51 16 Nov '04  
GeneralRe: irfanviewmemberRowland Shaw4:14 29 Dec '05  
GeneralRe: irfanviewmemberDermot O S2:29 26 Oct '07  

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

PermaLink | Privacy | Terms of Use
Last Updated: 9 Mar 2003
Editor: Smitha Vijayan
Copyright 2003 by Christian Ballerstaller
Everything else Copyright © CodeProject, 1999-2008
Web12 | Advertise on the Code Project