Converting Multiple .jpgs

ImageMagickObject is a Windows COM+ interface to ImageMagick. COM+, Visual Basic, and Delphi users should post to this discussion group.
Post Reply
brendan

Post by brendan »

You can write a simple vbscript to do this.

Also, the mogrify command will make the changes to the original image.

Code: Select all

mogrify -resize 256x256 *.jpg
will resize all images in the directory to 256x256.

Code: Select all

mogrify -resize 25% *.jpg
will reduce all images to 25% of original size. Make a backup of the originals before using these commands.


Also check the forums here. There are many examples if you take a moment to look. This thread , for example.


I will post an example when I get home. You must have installed the optional ImageMagickObject COM+/OLE compatible component when you installed ImageMagick.
Post Reply