- montage
Creates a 'montage', an image created of many other images, arranged in a random fashion.
Command syntax:
montage r34.jpg r32.jpg skylines* skyline_images.miff |
The above would create a “montage” of images (it would tile a certain number of images) into a composite image called “skyline_images.miff”, you could always use display to view the image.
 | Note |
|---|
| | Note that the images are converted to the same size (scaled) so they can be tiled together. |
- convert
To convert the file format of an image to another image format. convert is used to change a files format, for example from a jpeg to a bitmap or one of many other formats. convert can also manipulate the images as well (see the man page or the ImageMagick site).
Example from Jpeg to PNG format:
convert JPEG: thisfile.jpg PNG: thisfile.png |
- import
Captures screen-shots from the X server and saves them to a file. A screen-dump of what X is doing.
Command syntax:
- display
display is used to display (output) images on the screen. Once open you are can also perform editing functions and are able to read/write images. It has various interesting options such as the ability to display images as a slide show and the ability to capture screenshots of a single window on-screen.
Command syntax (for displaying an image):
To display a slide show of images, open the images you want possibly using a wildcard, for example:
And then click on the image to bring up the menu and then look under the miscellaneous menu for the slide show option.
 | Speed Warning |
|---|
| | Be careful when opening multiple large sized images (especially on a slow machine) and putting the slide show on a small delay between image changes. Your processor will be overloaded and it will take a significant amount of time to be able to close ImageMagick. |
- identify
Will identify the type of image as well as it's size, colour depth and various other information. Use the -verbose option to show detailed information on the particular file(s).
Command syntax:
- mogrify
mogrify is another ImageMagick command which is used to transform images in a number of different ways, including scaling, rotation and various other effects. This command can work on a single file or in batch.
For example, to convert a large number of tiff files to jpeg files you could type:
mogrify -format jpeg *.tiff |
This command has the power to do a number of things in batch including making thumbnails of sets of images.
For this you could type:
mogrify -geometry 120x120 *.jpg |
- showrgb
showrgb is used to uncompile an rgb colour-name database. The default is the one that X was built with. This database can be used to find the correct colour combination for a particular colour (well it can be used as a rough guide anyway).
To list the colours from the X database, simply type: