Command line use of ImageMagick has a bit of a steep learning curve, only in that the options to the basic commands seem to be almost endless, but once you get the hang of it, it's often way way way faster than messing around in Gimp, especially when batch conversions are involved.
Both Godel and myself used "50%" in our examples to the "-resize" option, but you can also specify an explicit size. For example, to convert all .jpg files in the current directory to 640x480 pixels:
Code:
mogrify -resize 640x480 *.jpg
The identify command from ImageMagick is also handy.
BEFORE
Code:
BASH:~/work/test/-> identify img/rotten_tree_*
rotten_tree_effects2.jpg JPEG 1152x864 1152x864+0+0 DirectClass 8-bit 335.006kb
rotten_tree_effects.jpg[1] JPEG 1152x864 1152x864+0+0 DirectClass 8-bit 634.148kb
rotten_tree_stump.jpg[2] JPEG 1152x864 1152x864+0+0 DirectClass 8-bit 627.027kb
AFTER
Code:
BASH:~/work/test/-> identify rotten_tree_*
rotten_tree_effects2.jpg JPEG 640x480 640x480+0+0 DirectClass 8-bit 62.8867kb
rotten_tree_effects.jpg[1] JPEG 640x480 640x480+0+0 DirectClass 8-bit 104.152kb
rotten_tree_stump.jpg[2] JPEG 640x480 640x480+0+0 DirectClass 8-bit 173.377kb