Quote:
Originally Posted by shousa
Is there some way of batch converting all the images in a directory to this best size?
i have hundreds, all too big.
|
If you just want to change image sizes, ImageMagick works pretty well.
If you're running windows and want to change all the files in the current directory, a simple:
Code:
for %x in (*.jpg) do convert %x -resize 100x100 "rsz_%x"
does the trick. There's more that can be done (i.e. recursively processing the files, changing the file type from .jpg to .png during the resize, etc.) but that's beyond the scope of a simple tip