I need a image script, or plugin/command that will scan and resize all images in a folder to a max height & width of 350 pixels keeping the picture in proportion.
Originally posted by acctman I need a image script, or plugin/command that will scan and resize all images in a folder to a max height & width of 350 pixels keeping the picture in proportion.
anyone know where i can get this at?
Use ImageMagick.... a free, and very powerful tool for both *nix and Windows machines.
I believe the command line would look like such:
mogrify -size 350x350 *.jpg -resize 350x350 +profile "*"
If it's a *nix machine, just change to the directory where the images are located and run this command (or use the full directory path in the command line).
Comment