Click here to Skip to main content
Click here to Skip to main content

Folder Resize

By , 11 Nov 2005
 

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.

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:

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)

About the Author

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

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralSystem.Drawing not available in VS05eX with 2.0 [modified] Pinmemberm.kruse26 Jun '06 - 12:43 
GeneralWhy not have filters? GDI is horrible PinmemberKory.Postma18 Nov '05 - 2:40 
GeneralGDI+ isn't *that* bad PinmemberITGFanatic30 Oct '06 - 6:54 
Questioncompression or Resize Pinmemberyfoulon16 Nov '05 - 2:27 
It should give better results to modify quality factor of jpeg compression than to remove directly points of the image to resize it ; what do you think about it ?
 
yfoulon
GeneralHi Fawzi Pinmemberr_mendel15 Nov '05 - 0:14 
GeneralGlobalization Pinmemberyfoulon14 Nov '05 - 21:17 
Generalsee also PinmemberAlberto Venditti14 Nov '05 - 21:06 
GeneralA fix to memory leaks suggested PinmemberJun Du11 Nov '05 - 15:29 
GeneralRe: A fix to memory leaks suggested PinprotectorMarc Clifton13 Nov '05 - 2:28 
GeneralRe: A fix to memory leaks suggested PinmemberMinaFawzi13 Nov '05 - 4:49 
GeneralRe: A fix to memory leaks suggested PinmemberJun Du13 Nov '05 - 5:23 
GeneralRe: A fix to memory leaks suggested Pinmemberyfoulon14 Nov '05 - 20:57 
GeneralRe: A fix to memory leaks suggested PinmemberJun Du15 Nov '05 - 12:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 11 Nov 2005
Article Copyright 2005 by MinaFawzi
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid