Notes from when I installed the ImageMagick on jasper on 9-3-2003. I wanted another image conversion tool besides Tom's any2any, and Tom recommended either xv or the "PBM Toolkit". I was loading all those old, US images and wanted to correct some poorly-formed TIF images. The bad images were giving decompression errors, yet the images appeared to be ok enough to use. I wanted a programatic way to remove the errors. I got xv, but it didn't have a command line mechanism to convert image files. The "PBM Toolkit" evidently has been renamed to first, "PBM Plus", then to ImageMagick and is available from www.imagemagick.org. I got -rwxrwxrwx jasper staff 6107198 Sep 02 14:38 ImageMagick-5.5.7-10.zip which created a ImageMagick-5.5.7 directory when unzip'd. I had to install X11.adt, especially X11.adt.ext in order to get /usr/lpp/X11/include/X11/extensions/shape.h and XShm.h. Then the make bombed with the message ld:accessx(): A file or directory in the path name does not exist. due to a bad line in the ImageMagick-5.5.7/PerlMagick/Makefile.aperl file. This file is generated, but I didn't understand how, so I manually fixed the "MAP_LINKCMD=" line from .../aix/CORE/$(PERL_INC)/perl.exp to .../aix/CORE/perl.exp Then everything compiled cleanly. What I got was lots of stuff in /usr/local/lib/ImageMagick-5.5.7 /usr/local/include/magick /usr/local/man /usr/local/bin /usr/local/share/ImageMagick and ImageMagick-5.5.7 The /usr/local/bin files included Magick-config PerlMagick animate composite convert display identify import mogrify montage Now to figure out what these are and how to use them. Time to RTFM. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Hey! I found some HTML documentation in /usr/local/share/ImageMagick-5.5.7/www, so a quick cd ~jasper/public_html and a cp -pR /usr/local/share/ImageMagick-5.5.7/www ImageMagick allowed me to see it at http://w3/~jasper/ImageMagick. A good place to start is http://w3/~jasper/ImageMagick/tools.html. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Other interesting commands are mogrify to transform an image, and identify to describe an image. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The convert command looks interesting, but from patimg1, after I cp -p /cdrom/usp001/usp001/00/000/00000013.tif ~jasper I tried a convert 00000013.tif 13.tif command, but it gave me convert: TIFF library is not available (00000013.tif) [A system call received a parameter that is not valid.]. There was something about the TIF libraries when I built this. Time to do more RTFM-ing. Ah, here it is, in the README.txt ... ImageMagick requires Sam Leffler's TIFF software available via anonymous FTP at ftp://ftp.remotesensing.org/pub/libtiff/ or via HTTP at http://www.libtiff.org/ (which no longer exists evidently) to read the TIFF image format. It in turn optionally requires the JPEG and ZLIB libraries. Support for JPEG, ZIP, and LZW compression must be explicitly enabled by editing libtiff Makefiles. The TIFF library no longer includes support for LZW compression due to patent issues. If you need to use LZW compression, support is available via a seperate LZW compression kit (a patch) at the sites listed above. I downloaded tiff-v3.5.7.tar.gz from the FTP site, which when gzip -d