Click here to Skip to main content
15,867,453 members
Articles / Multimedia / GDI+
Article

Building a Simple Image Conversion Utility

Rate me:
Please Sign up or sign in to vote.
4.74/5 (11 votes)
13 Sep 20065 min read 75.6K   1.2K   57   7
This article describes a very easy approach to building an image conversion utility that will permit the user to open a supported image type and convert it to another supported image type.

Screenshot

Introduction

This article describes a very easy approach to building an image conversion utility that will permit the user to open a supported image type and convert it to another supported image type. The supported file types addressed in the application are:

  • Bitmap
  • Enhanced Windows Metafile
  • Exchangeable Image file
  • GIF files
  • JPEG files
  • PNG files
  • TIFF files
  • Window Metafiles

All file conversions are accomplished through the use of the Microsoft .NET 2.0 Imaging class library conversion methods. In addition to demonstrating the approach used to achieve the file conversions, the application also demonstrates an approach used to open an image file into a picture box control.

Image 2

Figure 1: The image conversion utility in use

Getting Started

In order to get started, unzip the attachment and load the solution into Visual Studio 2005. Examine the Solution Explorer, and note the files contained in the project:

Image 3

Figure 2: The Solution Explorer showing the project files

The contents of the solution show that it contains a single project entitled, “ImageConverter”. This project contains a single form called “Form1”. The Form1.vb class contains all of the code necessary to drive the utility.

A quick check of the references will reveal that only the default class libraries are contained in the project, and the Program.cs file is an unedited version of the default version of that file.

The Code: The Main Application Form

The main application’s form class (Form1) contains all of the application code needed to make the file conversions and to open a file into the application’s image viewer (which is nothing more than a standard PictureBox control).

The class begins with the using statements; the imports include the standard and default inclusions as well as an added reference to System.Drawing.Imaging. The class declaration is equally simple:

C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Imaging;
using System.Text;
using System.Windows.Forms;

namespace ImageConverter
{
    public partial class Form1 : Form
    {…

Following the class declaration and library imports, a few local variables are declared to support file management within the application across each of the class methods:

C#
// local variable declarations
string CurrentFile;
Image img;

The string variable “CurrentFile” is used to store the name of the current, working image file (as loaded into the form’s PictureBox). The image variable “img” is used to provide form level exposure to the current image; this was done here to make the image available to any of the form method calls that require access to the image.

Following the variable declarations, there is a section of default code added to the project through the Visual Studio IDE. You may examine that code from the IDE if you so desire, but it won’t be discussed in this article.

The next piece of code worthy of mention is the code used to open an image file and load it into the form. It is not really necessary to load the file in order to perform the conversion, however, this utility does load the file so the user may examine it prior to making the conversion. The code for the file open method looks like this:

C#
// Show open file dialog to allow user to open an image file
// for display in the application
private void openToolStripMenuItem_Click(object sender, EventArgs e)
{
    openFileDialog1.Title = "Open Image File";
    openFileDialog1.Filter = "Bitmap Files|*.bmp" +
        "|Enhanced Windows MetaFile|*.emf" +
        "|Exchangeable Image File|*.exif" +
        "|Gif Files|*.gif|Icons|*.ico|JPEG Files|*.jpg" +
        "|PNG Files|*.png|TIFF Files|*.tif|Windows MetaFile|*.wmf";
    openFileDialog1.DefaultExt = "bmp";
    openFileDialog1.FilterIndex = 1;
    openFileDialog1.FileName = "";
    openFileDialog1.ShowDialog();

    if (openFileDialog1.FileName == "")
        return;

    CurrentFile = openFileDialog1.FileName.ToString();

    img = Image.FromFile(openFileDialog1.FileName);
    pictureBox1.Image = img;
}

This method first configures and displays a File Open dialog; from the dialog, the user may navigate to the file they intend to convert. The method checks to see if a valid file name has been entered and, if no valid file name exists, the application will abort the attempt and close the dialog box.

If a valid file has been selected, the method will set the current file name variable to the file name in the file open dialog box, and will set the img variable to contain the image using the Image.FromFile method included in the imaging library. With a file loaded, you should see the selected image loaded into a PictureBox control on the form.

Once the image has been loaded, the user may open the File menu, select “Convert To”, and then select one of the alternative image file formats:

Image 4

Figure 3: Convert to alternative image file format options

When the user selects one of the available image options, the application will launch a method used to complete the conversion; the application will not overwrite an existing file nor will it allow the user to specify a new file name or location. The converted file will be dropped into the same folder as the original, but will carry the new file extension:

Image 5

Figure 4: Windows Explorer showing the original and converted files in the same directory (note, the Size and Type values to verify the conversion has occurred).

Whilst the code used to make the conversion is, in the application, specific to the target image type, very little in each block of code changes. Since all of the conversion code is essentially the same, I will only show one of the methods here, you can refer to the source code to see each specific conversion:

C#
// Convert to GIF
private void gIFFileToolStripMenuItem_Click(object sender, EventArgs e)
{
   string newName =  
   System.IO.Path.GetFileNameWithoutExtension(CurrentFile);
   newName = newName + ".gif";

   try
   {
       img.Save(newName, ImageFormat.Gif);
   }
   catch
   {
       MessageBox.Show("Failed to save image to GIF format.", "Error", 
                       MessageBoxButtons.OK, MessageBoxIcon.Error);
       return;
   }

   MessageBox.Show("Image file saved to " + newName.ToString(), 
                   "Image Saved", MessageBoxButtons.OK, 
                   MessageBoxIcon.Information);
}

The code shown here is the call made to convert the current image to GIF format. At the start of the method, a new string variable is declared and used to capture the name of the current file without the current file’s extension. The newName variable then has the file extension of the new, converted file type added to it.

Once the new file name has been configured, the existing image, made available through the “img” variable, has its Save method evoked, the new file name and the desired image format are passed to this Save method. The Imaging library function then does the work of converting the image to the target format and saving it into the directory along with the original version of the image.

If the conversion does not take place (for example, if the user tries to overwrite the original file), a message box will be displayed to tell the user that the requested conversion did not occur. If the Save occurs without error, the user is told that the image file was saved to the new file name. That is all there is to it. If you check your image file directory, you will see the original and the converted file, each with the correct extension.

Summary

This application has attempted to describe how simple it is to accomplish an image file format conversion through the use of the .NET 2.0 framework’s Imaging class. Whilst this document addresses the topic in the context of a C# 2005 application, there is no reason that you could not apply the same code to a 1.0 or 1.1 framework based solution if you are working in .NET 1.0 or .NET 2.0.

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


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralThank you for such a simple program. Pin
TonyFree14-May-07 18:39
TonyFree14-May-07 18:39 
Thanks for such a simple program. Im sure it
will go a long way to helping me get a handle on
the Image class.

Tony
GeneralRe: Thank you for such a simple program. Pin
salysle17-May-07 4:36
salysle17-May-07 4:36 
GeneralEMF Error Pin
piusott16-Apr-07 21:19
piusott16-Apr-07 21:19 
Generalconvert the bitmap file to JPEG File Pin
mavsolos18-Feb-07 1:45
mavsolos18-Feb-07 1:45 
QuestionLoading images from slightly different formats Pin
jpjofresm15-Dec-06 14:33
jpjofresm15-Dec-06 14:33 
GeneralJPEG quality Pin
Martin.CZ13-Sep-06 9:31
Martin.CZ13-Sep-06 9:31 
GeneralRe: JPEG quality [modified] Pin
salysle13-Sep-06 10:04
salysle13-Sep-06 10:04 

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.