Quote:
Originally Posted by Nate the great
If someone could tell me how to resize all the images at the same time, or a macro that could do it, I'd appreciate it. I also have Word 2002, and don't mind using it. I can also down-convert the image resolution if necessary.
|
With ImageMagick it's as easy as:
Code:
convert -resample 72 input.jpg output.jpg
For batch processing, this can be put in a script or the "mogrify" command can be used. The "72" is the new dpi you want to down-sample your images to, "-resize 50%", for example, can be used instead.
I think there is an ImageMagick for windows too.