Click here to Skip to main content
15,879,184 members
Articles / Programming Languages / C#

Thumbnails Generation

Rate me:
Please Sign up or sign in to vote.
4.64/5 (12 votes)
6 Mar 2009CPOL3 min read 74.1K   3.2K   61   21
A generic way for generating thumbnails

Introduction

I started as a developer several years ago creating websites. Now I'm working for a company which creates websites, but also multimedia applications. Each time we start developing a new solution, there's this need for image processing. In case of a website we need to generate thumbnails, and for our Windows applications images are restricted to a certain size. To accomplish thumbnails creation and image resizing, we use standard .NET Framework functions. However I was sick and tired of developing the same code over and over again with a slight difference required for each solution. Therefore I decided to develop an image processing class which is able to process images in a more dynamic way. 

Background

Basically the class is pretty simple. It resizes images and stores them again (or returns the image as an object if you like). Depending on your needs, you're able to set the image's size, quality, resizing method and so forth.

Using the Code

The ThumbnailCreation class exposes four properties:

  • ScalingOption
  • MaxImageLength
  • FileFormat
  • Quality

ScalingOption (read-only) Property

The scaling option enables you to tell the ThumbnailCreation class to scale the image in different ways. There are three options available:

  • MaintainAspect
  • CenterImage
  • FixedSize

You need to set the ScalingOption using a method called SetScalingOption(), which forces you to also define a size when scaling option FixedSize is used.
The default is called MaintainAspect which will maintain the aspect ratio and resize the image so that the largest image side (width or height) equals the value set using the MaxImageLength property.

MaintainAspect.jpg

When the ScalingOption is set to CenterImage, the center of the image will be scaled so that the largest side (width of height) of the image equals the value set using the MaxImageLength property. The center of the image is a square of half the width and half the height of an image. The image below shows you the result of a thumbnail created using the CenterImage scaling option.

CenterImage.jpg

The third scaling option is FixedSize. You need to define a size and your source image will be scaled to that size.

MaxImageLength Property

The MaxImageLength property is used to define the size of thumbnails. This property is only used for the scaling options MaintainAspect and CenterImage. The largest side of the image (width or height) will equal this value in pixels. The remaining side is scaled so that the aspect ratio of the image will be maintained.

FileFormat Property

The FileFormat property enables you to define whether images will be stored as JPEG or PNG image. The default is JPEG. This option is added because you may want to use the PNG format for transparency.

Examples

And now... a few examples of calling the object's StoreThumbnail (which actually stores a thumbnail version of your image on the harddrive). The next example shows you the easiest way of generating a thumbnail accepting all default values.

C#
using (ThumbnailCreation objThumbnailCreator = new ThumbnailCreation())
    objThumbnailCreator.StoreThumbnail(SourceFile, DestinationFile);		

The example below shows the code for generating a thumbnail having the ScalingOption property set to CenterImage. The default thumbnail size of 120 pixels is changed to 150 pixels and the image's format will be PNG.

C#
using (ThumbnailCreation objThumbnailCreator = new ThumbnailCreation())
{
    objThumbnailCreator.MaxImageLength = 150; // Max image side to 150 pixels
    objThumbnailCreator.Quality = 100; 	// Best quality
    objThumbnailCreator.SetScalingOption(ScalingOptions.CenterImage);
    objThumbnailCreator.FileFormat = FileFormats.PNG;
    objThumbnailCreator.StoreThumbnail(SourceFile, DestinationFile);
} 

History

  • 2009/03/06 - Initial version

License

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


Written By
Architect http://4dotnet.nl
Netherlands Netherlands
I'm developing software for over two decades. I'm working as a cloud solution architect and a team lead at 4DotNet in The Netherlands.

In my current position, I love to help customers with their journey to the cloud. I like to create highly performant software and to help team members to a higher level of software development.

My focus is on the Microsoft development stack, mainly C# and the Microsoft Azure Cloud. I also have a strong affinity with Angular. As a result of my contributions to the community, I received the Microsoft MVP Award for Microsoft Azure.

Comments and Discussions

 
GeneralThank you! Pin
mhoward007-Dec-09 9:36
mhoward007-Dec-09 9:36 

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.