picture resizing

mpegripper

[H]ard|Gawd
Joined
Oct 8, 2001
Messages
1,212
anyone know of any good programs where i can choose a directory where i want to resize all of the pics in there


Thanks
 
I use Fireworks 4 to resize pictures. I don't think that you can do the whole directory at one time (not sure if that is what you were asking or not). Anywho, Fireworks 4 is what I use. I am pretty sure that The GIMP does resizing as well if you are looking for something free.
 
check out

"imagemagick "

it is a collection of DOS/CLI programs for image manipulation.

if you know what you are doing you are draw with it as well

This is whatI did to resize all JPG is a dir


Code:
for img in `ls *.JPG`
do
  echo $img
 # convert -thumbnail  7%x7% $img thumb-$img
   convert -thumbnail  150x112 $img thumb-$img
  done

 for img in `ls *.jpg`
 do
   echo $img
  #   convert -thumbnail  7%x7% $img thumb-$img
      convert -thumbnail  150x112 $img thumb-$img
       done
 
Back
Top