Click here to Skip to main content
15,868,016 members
Articles / Desktop Programming / Windows Forms
Article

Folder Resize

Rate me:
Please Sign up or sign in to vote.
3.57/5 (11 votes)
11 Nov 2005CPOL 65.6K   747   27   13
How to resize a large number of images.

Sample Image

Introduction

When I downloaded my pictures from my digital camera I found that they were very large and I had to spend a long time to upload them and to resize them individually. So I wrote this simple application that resizes all the images in a specified folder.

Using the code

The code is very simple. As you can see in the form, it is very simple and understandable. First you choose the folder and then click Start to begin the resizing process and you can change the resizing factor and the folder name that will contain the resized images.

The code uses the System.IO and System.Drawing.Imaging namespaces. The first one is used to create folders and the second one used to specify the image format.

The first button will open the FolderBrowserDialog which allows you to choose the folder that contains the images to be resized.

C#
private void button1_Click(object sender, System.EventArgs e)
{
    DialogResult dr = folderBrowserDialog1.ShowDialog();
    if(dr == DialogResult.OK)    
    {
        path = folderBrowserDialog1.SelectedPath;
        textBox1.Text=path;
        button2.Enabled=true;
    }

After we choose the folder we click on the second button to start resizing and here is the code:

C#
private void button2_Click(object sender, System.EventArgs e)
{
    // Create The new directory with the name specified in the textbox

    DirectoryInfo newDiroctory = new DirectoryInfo(path+"\\"+textBox3.Text);
    newDiroctory.Create();

    // This is the new path that will contain the new resized images
    string newPath =path +"\\"+ textBox3.Text+"\\"; 

    string []images = Directory.GetFiles(path);
    // this array contain ALL files in the specified directory
            
    progressBar1.Minimum=0;
    progressBar1.Maximum=images.Length;
    int couter = 0; // this will count the number of images in the folder
    for (int i=0;i < images.Length;i++)
    {

        // select only the image format in the folder
        string fileExtention = 
               images[i].Substring(images[i].Length - 3, 3);
        if(fileExtention== "bmp"||fileExtention=="jpg"||
           fileExtention=="JPG"||fileExtention=="BMP"||
           fileExtention=="gif"||fileExtention=="Gif")
        {
            couter++;

            Image currentImage = Image.FromFile(images[i]);
            int h = currentImage.Height;
            int w = currentImage.Width;

            // calculate the new dimensions
            // according to the resizing factor
            float factor = 
                  float.Parse(comboBox1.SelectedItem.ToString());
            int newH = (int)Math.Ceiling((double)h*factor);
            int newW = (int)Math.Ceiling((double)w*factor);
            
            // get the Image name from the path 
            string imageName = images[i].Substring(path.Length+1,
                                 images[i].Length-path.Length-5);

            // create the new bitmap with the specified size
            Bitmap newBitmap = new Bitmap(currentImage,new Size(newW,newH));
            
            // according to type of the file we will save the new image
            if(fileExtention=="bmp"||fileExtention=="BMP")
            newBitmap.Save(newPath+imageName+".bmp",ImageFormat.Bmp);
            if(fileExtention=="JPG"||fileExtention=="jpg")
                newBitmap.Save(newPath+imageName+".jpg",ImageFormat.Jpeg);
            if(fileExtention=="gif"||fileExtention=="GIF")
                newBitmap.Save(newPath+imageName+".gif",ImageFormat.Gif);
            progressBar1.Value++;
        }
    }
    
    MessageBox.Show(couter.ToString()+ 
      " images was resized and its path is:"+newPath,"Done");
}

The code is very simple and there is a lot of helpful comments.

License

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


Written By
Web Developer
Egypt Egypt
Mina Fawzi
Faculty of engineering Ainshams university In CAIRO
intersted in .net technology and DirectX

Comments and Discussions

 
GeneralA fix to memory leaks suggested Pin
Jun Du11-Nov-05 15:29
Jun Du11-Nov-05 15:29 
GeneralRe: A fix to memory leaks suggested Pin
Marc Clifton13-Nov-05 2:28
mvaMarc Clifton13-Nov-05 2:28 
GeneralRe: A fix to memory leaks suggested Pin
MinaFawzi13-Nov-05 4:49
MinaFawzi13-Nov-05 4:49 
GeneralRe: A fix to memory leaks suggested Pin
Jun Du13-Nov-05 5:23
Jun Du13-Nov-05 5:23 
GeneralRe: A fix to memory leaks suggested Pin
yfoulon14-Nov-05 20:57
yfoulon14-Nov-05 20:57 
GeneralRe: A fix to memory leaks suggested Pin
Jun Du15-Nov-05 12:05
Jun Du15-Nov-05 12:05 

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.