Easy Thumbnails is a freeware software tool. The installation and usage are very simple. The user just needs to pick the pictures and set a few simple parameters, such as size, brightness, contrast or resizing algorithm. He can also set a new naming convetion for the newly created files. The tool is very fast and is perfect not only for webdevelopers but for anybody who wants to shrink a higher number of pictures, without having to open them separately or uploading them to third party website.
Comments
Thanks for your recommendation.
I also recommend looking into imagemagick. It's a commandline tool which can also be used easily to create thumbnails with one line of code.
mogrify -format gif -path thumbs -thumbnail 100x100 *.jpg
This also can be used in php and scripts
For more see here: http://www.imagemagick.org/Usage/thumbnails/