Thanks RR.
I'm hitting a few problems though - is % a spacial character in a .bat file? It seems to be killing the following string or two.
Edit: Nevermind - I've found it. There are spaces in the full filenames because windows is like that. I'll see if I can find a way around that.
Edit^2: Done it. Phergus on the rptools boards gave me a DOS command for this, and with a little tweaking I got this which works just dandy:
Code:
for /r %i IN (*.png) DO mogrify -resize 50% "%i"
Thanks a lot RR for the thoughts about the imagemagick resizing. The reason I was surprised about the size is because I have the resized version from Gimp and the resized version from imagemagick and the IM versions are significantly larger than the Gimp ones. I'll investigate over the weekend.