NAME
|
|
composite - composite images together.
|
Contents
|
Synopsis
|
|
composite [ options ... ] image composite
[ mask ] composited
|
Description
|
|
composite composite images to create new images.
composite is the base image and image contains the changes.
composited is the result, and normally has the same dimensions
as composite.
The optional mask can be used to provide matte information for
composite
when it has none or if you want a different mask. A mask image is typically
grayscale and the same size as composite. If mask is
not grayscale,
it is converted to grayscale and the resulting intensities are used as
matte information.
|
Examples
|
|
To composite an image of a cockatoo with a perch, use:
composite cockatoo.miff perch.ras composite.miff
To compute the difference between images in a series, use:
composite -compose difference series.2 series.1 difference.miff
To composite an image of a cockatoo with a perch starting at location (100,150),
use:
composite -geometry +100+150 cockatoo.miff perch.ras composite.miff
To tile a logo across your image of a cockatoo, use
convert +shade 30x60 cockatoo.miff mask.miff
composite -compose bumpmap -tile logo.png
cockatoo.miff mask.miff composite.miff
To composite a red, green, and blue color plane into a single composite image,
try
composite -compose CopyGreen green.png red.png red-green.png
composite -compose CopyBlue blue.png red-green.png composite.png
|
Back to Contents
Options
|
Back to Contents
Environment
|
|
|
DISPLAY
|
| To get the default host, display number, and screen. |
|
Back to Contents
Authors
|
Back to Contents
Copyright
|
|
Copyright (C) 2003 ImageMagick Studio
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files ("ImageMagick"),
to deal in ImageMagick without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of ImageMagick, and to permit persons to whom the ImageMagick
is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of ImageMagick.
The software is provided "as is", without warranty of any kind, express
or implied, including but not limited to the warranties of merchantability,
fitness for a particular purpose and noninfringement.In no event shall
ImageMagick Studio be liable for any claim, damages or other liability,
whether in an action of contract, tort or otherwise, arising from, out
of or in connection with ImageMagick or the use or other dealings in
ImageMagick.
Except as contained in this notice, the name of the
ImageMagick Studio LLC shall not be used in advertising or otherwise to
promote the sale, use or other dealings in ImageMagick without prior written
authorization from the ImageMagick Studio.
|
Back to Contents
|