grannytgp |
12-07-2003 12:15 AM |
Quote:
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.
The utility you'll want to use is called mogrify, and comes with the ImageMagick bundle. Here's the info on mogrify: http://www.imagemagick.org/www/mogrify.html
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).
|