- Add ImageMagick 6.8.3-1 sources

This commit is contained in:
Santi Noreña 2013-02-19 12:28:04 +01:00
parent b8db71063c
commit 615ec83706
3424 changed files with 1398702 additions and 0 deletions

View file

@ -0,0 +1,75 @@
.TH ImageMagick 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
ImageMagick \- is a free software suite for the creation, modification and display of bitmap images.
.SH SYNOPSIS
\fBconvert\fP \fIinput-file\fP [\fIoptions\fP] \fIoutput-file\fP
.SH OVERVIEW
ImageMagick\[rg], is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (about 100) including GIF, JPEG, JPEG-2000, PNG, PDF, PhotoCD, TIFF, and DPX. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and B\\['e]zier curves.
ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you can freely use, copy, modify, and distribute. Its license is compatible with the GPL. It runs on all major operating systems.
The functionality of ImageMagick is typically utilized from the command line or you can use the features from programs written in your favorite programming language. Choose from these interfaces: MagickCore (C), MagickWand (C), ChMagick (Ch), Magick++ (C++), JMagick (Java), L-Magick (Lisp), PascalMagick (Pascal), PerlMagick (Perl), MagickWand for PHP (PHP), PythonMagick (Python), RMagick (Ruby), or TclMagick (Tcl/TK). With a language interface, use ImageMagick to modify or create images automagically and dynamically.
ImageMagick includes a number of command-line utilities for manipulating images. Most of you are probably accustom to editing images one at a time with a graphical user interface (GUI) with such programs as gimp or Photoshop. However, a GUI is not always convenient. Suppose you want to process an image dynamically from a web script or you want to apply the same operations to many images or repeat a specific operation at different times to the same or different image. For these types of operations, the command-line image processing utility is appropriate.
In the paragraphs below, find a short description for each command-line tool.Cl
ick on the program name to get details on the program usage and a list of comman
d-line options that alters how the program performs. If you are just getting acq
uainted with ImageMagick, start at the top of the list, the convert program, and
work your way down. Also be sure to peruse Anthony Thyssen's tutorial on how to
use ImageMagick utilities to convert, compose, or edit images from the command-
line.
.TP
.B convert
convert between image formats as well as resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more.
.TP
.B identify
describes the format and characteristics of one or more image files.
.TP
.B mogrify
resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more. Mogrify overwrites the original image file, whereas, convert writes to a different image file.
.TP
.B composite
overlaps one image over another.
.TP
.B montage
create a composite image by combining several separate images. The images are tiled on the composite image optionally adorned with a border, frame, image name, and more.
.TP
.B compare
mathematically and visually annotate the difference between an image and its reconstruction..
.TP
.B stream
is a lightweight tool to stream one or more pixel components of the image or portion of the image to your choice of storage formats. It writes the pixel components as they are read from the input image a row at a time making stream desirable when working with large images or when you require raw pixel components.
.TP
.B display
displays an image or image sequence on any X server.
.TP
.B animate
animates an image sequence on any X server.
.TP
.B import
saves any visible window on an X server and outputs it as an image file. You can capture a single window, the entire screen, or any rectangular portion of the screen.
.TP
.B conjure
interprets and executes scripts written in the Magick Scripting Language (MSL).
.PP
For more information about the ImageMagick, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/index.html or http://www.imagemagick.org/.
.SH SEE ALSO
convert(1), identify(1), composite(1), montage(1), compare(1), display(1), animate(1), import(1), conjure(1), quantize(5), miff(4)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,99 @@
.ad l
.nh
.TH Magick++-Config 1 "2 May 2002" "ImageMagick"
.SH NAME
Magick++-config \- get information about the installed version of Magick++
.SH SYNOPSIS
.B Magick++-config
.B [--cppflags]
.B [--cxxflags]
.B [--exec-prefix]
.B [--ldflags]
.B [--libs]
.B [--prefix]
.B [--version]
.SH DESCRIPTION
.B Magick++-config
prints the compiler and linker flags required to compile and link programs
that use the
.BR ImageMagick
C++ Application Programmer Interface (known as
.BR Magick++
).
.SH EXAMPLES
To print the version of the installed distribution of
.BR Magick++ ,
use:
.nf
Magick++-config \-\-version
.fi
To compile a program that calls the
.BR ImageMagick
C++ Application Programmer Interface, use:
.nf
c++ `Magick++-config \-\-cxxflags \-\-cppflags \-\-ldflags \-\-libs` program.cpp
.fi
.SH OPTIONS
.TP
.B \-\-cppflags
Print the preprocessor flags that are needed to find the
.B ImageMagick
C and C++ include files and defines to ensures that the ImageMagick data structures match between
your program and the installed libraries.
.TP
.B \-\-cxxflags
Print the compiler flags that were used to compile
.BR libMagick++ .
.TP
.B \-\-exec-prefix
Print the directory under which target specific binaries and executables are installed.
.TP
.B \-\-ldflags
Print the linker flags that are needed to link with the
.B libMagick++
library.
.TP
.B \-\-libs
Print the linker flags that are needed to link a program with
.BR libMagick++ .
.TP
.B \-\-prefix
Print the directory under which the package is installed.
.TP
.B \-\-version
Print the version of the
.B ImageMagick
distribution to standard output.
.SH COPYRIGHT
Copyright (C) 2000 ImageMagick Studio LLC, a non-profit organization dedicated
to making software imaging solutions freely available.
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
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.
.SH AUTHORS
Bob Friesenhahn, ImageMagick Studio

View file

@ -0,0 +1,69 @@
.ad l
.nh
.TH Magick-Config 1 "2 May 2002" "ImageMagick"
.SH NAME
Magick-config \- get information about the installed version of ImageMagick
.SH SYNOPSIS
.B Magick-config
.B [--cflags]
.B [--cppflags]
.B [--exec-prefix]
.B [--ldflags]
.B [--libs]
.B [--prefix]
.B [--version]
.SH DESCRIPTION
.B Magick-config
prints the compiler and linker flags required to compile and link programs
that use the
.BR ImageMagick
Application Programmer Interface.
.SH EXAMPLES
To print the version of the installed distribution of
.BR ImageMagick ,
use:
.nf
Magick-config \-\-version
.fi
To compile a program that calls the
.BR ImageMagick
Application Programmer Interface, use:
.nf
cc `Magick-config \-\-cflags \-\-cppflags \-\-ldflags \-\-libs` program.c
.fi
.SH OPTIONS
.TP
.B \-\-cflags
Print the compiler flags that were used to compile
.BR libMagick .
.TP
.B \-\-cppflags
Print the preprocessor flags that are needed to find the
.B ImageMagick
C include files and defines to ensure that the ImageMagick data structures match between
your program and the installed libraries.
.TP
.B \-\-exec-prefix
Print the directory under which target specific binaries and executables are installed.
.TP
.B \-\-ldflags
Print the linker flags that are needed to link with the
.B ImageMagick
library.
.TP
.B \-\-libs
Print the linker flags that are needed to link a program with
.BR libMagick .
.TP
.B \-\-version
Print the version of the
.B ImageMagick
distribution to standard output.
.SH LICENSE
See http://www.imagemagick.org/script/license.php.
.SH AUTHORS
John Cristy, ImageMagick Studio LLC

View file

@ -0,0 +1,69 @@
.ad l
.nh
.TH MagickCore-Config 1 "2 May 2002" "ImageMagick"
.SH NAME
MagickCore-config \- get information about the installed version of ImageMagick
.SH SYNOPSIS
.B MagickCore-config
.B [--cflags]
.B [--cppflags]
.B [--exec-prefix]
.B [--ldflags]
.B [--libs]
.B [--prefix]
.B [--version]
.SH DESCRIPTION
.B MagickCore-config
prints the compiler and linker flags required to compile and link programs
that use the
.BR ImageMagick
Application Programmer Interface.
.SH EXAMPLES
To print the version of the installed distribution of
.BR ImageMagick ,
use:
.nf
MagickCore-config \-\-version
.fi
To compile a program that calls the
.BR ImageMagick
Application Programmer Interface, use:
.nf
cc `MagickCore-config \-\-cflags \-\-cppflags \-\-ldflags \-\-libs` program.c
.fi
.SH OPTIONS
.TP
.B \-\-cflags
Print the compiler flags that were used to compile
.BR libMagick .
.TP
.B \-\-cppflags
Print the preprocessor flags that are needed to find the
.B ImageMagick
C include files and defines to ensure that the ImageMagick data structures match between
your program and the installed libraries.
.TP
.B \-\-exec-prefix
Print the directory under which target specific binaries and executables are installed.
.TP
.B \-\-ldflags
Print the linker flags that are needed to link with the
.B ImageMagick
library.
.TP
.B \-\-libs
Print the linker flags that are needed to link a program with
.BR libMagick .
.TP
.B \-\-version
Print the version of the
.B ImageMagick
distribution to standard output.
.SH LICENSE
See http://www.imagemagick.org/script/license.php.
.SH AUTHORS
John Cristy, ImageMagick Studio LLC

View file

@ -0,0 +1,69 @@
.ad l
.nh
.TH MagickWand-Config 1 "2 May 2002" "Wand"
.SH NAME
MagickWand-config \- get information about the installed version of the Magick Wand
.SH SYNOPSIS
.B MagickWand-config
.B [--cflags]
.B [--cppflags]
.B [--exec-prefix]
.B [--ldflags]
.B [--libs]
.B [--prefix]
.B [--version]
.SH DESCRIPTION
.B MagickWand-config
prints the compiler and linker flags required to compile and link programs
that use the
.BR Wand
Application Programmer Interface.
.SH EXAMPLES
To print the version of the installed distribution of
.BR Wand ,
use:
.nf
MagickWand-config \-\-version
.fi
To compile a program that calls the
.BR Wand
Application Programmer Interface, use:
.nf
cc `MagickWand-config \-\-cflags \-\-cppflags \-\-ldflags \-\-libs` program.c
.fi
.SH OPTIONS
.TP
.B \-\-cflags
Print the compiler flags that were used to compile
.BR libWand .
.TP
.B \-\-cppflags
Print the preprocessor flags that are needed to find the
.B Wand
C include files and defines to ensure that the Wand data structures match between
your program and the installed libraries.
.TP
.B \-\-exec-prefix
Print the directory under which target specific binaries and executables are installed.
.TP
.B \-\-ldflags
Print the linker flags that are needed to link with the
.B Wand
library.
.TP
.B \-\-libs
Print the linker flags that are needed to link a program with
.BR libWand .
.TP
.B \-\-version
Print the version of the
.B Wand
distribution to standard output.
.SH COPYRIGHT
See http://www.imagemagick.org/script/license.php
.SH AUTHORS
John Cristy, ImageMagick Studio LLC

View file

@ -0,0 +1,69 @@
.ad l
.nh
.TH Wand-Config 1 "2 May 2002" "Wand"
.SH NAME
Wand-config \- get information about the installed version of the Magick Wand
.SH SYNOPSIS
.B Wand-config
.B [--cflags]
.B [--cppflags]
.B [--exec-prefix]
.B [--ldflags]
.B [--libs]
.B [--prefix]
.B [--version]
.SH DESCRIPTION
.B Wand-config
prints the compiler and linker flags required to compile and link programs
that use the
.BR Wand
Application Programmer Interface.
.SH EXAMPLES
To print the version of the installed distribution of
.BR Wand ,
use:
.nf
Wand-config \-\-version
.fi
To compile a program that calls the
.BR Wand
Application Programmer Interface, use:
.nf
cc `Wand-config \-\-cflags \-\-cppflags \-\-ldflags \-\-libs` program.c
.fi
.SH OPTIONS
.TP
.B \-\-cflags
Print the compiler flags that were used to compile
.BR libWand .
.TP
.B \-\-cppflags
Print the preprocessor flags that are needed to find the
.B Wand
C include files and defines to ensure that the Wand data structures match between
your program and the installed libraries.
.TP
.B \-\-exec-prefix
Print the directory under which target specific binaries and executables are installed.
.TP
.B \-\-ldflags
Print the linker flags that are needed to link with the
.B Wand
library.
.TP
.B \-\-libs
Print the linker flags that are needed to link a program with
.BR libWand .
.TP
.B \-\-version
Print the version of the
.B Wand
distribution to standard output.
.SH COPYRIGHT
See http://www.imagemagick.org/script/license.php
.SH AUTHORS
John Cristy, ImageMagick Studio LLC

View file

@ -0,0 +1,96 @@
.TH animate 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
animate \- animates an image or image sequence on any X server.
.SH SYNOPSIS
.TP
\fBanimate\fP [\fIoptions\fP] \fIinput-file\fP
.SH OVERVIEW
The \fBanimate\fP program is a member of the ImageMagick(1) suite of tools. Use it to animate an image or image sequence on any X server.
For more information about the animate command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/animate.html or http://www.imagemagick.org/script/animate.php.
.SH DESCRIPTION
Image Settings:
\-authenticate value decrypt image with this password
\-backdrop display image centered on a backdrop
\-channel type apply option to select image channels
\-colormap type Shared or Private
\-colorspace type alternate image colorspace
\-decipher filename convert cipher pixels to plain pixels
\-define format:option
define one or more image format options
\-delay value display the next image after pausing
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-display server display image to this X server
\-dispose method layer disposal method
\-dither method apply error diffusion to image
\-format "string" output formatted image characteristics
\-gamma value level of gamma correction
\-geometry geometry preferred size and location of the Image window
\-gravity type horizontal and vertical backdrop placement
\-identify identify the format and characteristics of the image
\-immutable displayed image cannot be modified
\-interlace type type of image interlacing scheme
\-interpolate method pixel color interpolation method
\-limit type value pixel cache resource limit
\-loop iterations loop images then exit
\-matte store matte channel if the image has one
\-map type display image using this Standard Colormap
\-monitor monitor progress
\-pause seconds to pause before reanimating
\-page geometry size and location of an image canvas (setting)
\-quantize colorspace reduce colors in this colorspace
\-quiet suppress all warning messages
\-regard-warnings pay attention to warning messages
\-remote command execute a command in an remote display process
\-sampling-factor geometry
horizontal and vertical sampling factor
\-scenes range image scene range
\-seed value seed a new sequence of pseudo-random numbers
\-set attribute value set an image attribute
\-size geometry width and height of image
\-support factor resize support: > 1.0 is blurry, < 1.0 is sharp
\-transparent-color color
transparent color
\-treedepth value color tree depth
\-verbose print detailed information about the image
\-visual type display image using this visual type
\-virtual-pixel method
virtual pixel access method
\-window id display image to background of this window
Image Operators:
\-colors value preferred number of colors in the image
\-crop geometry preferred size and location of the cropped image
\-extract geometry extract area from image
\-monochrome transform image to black and white
\-repage geometry size and location of an image canvas (operator)
\-resample geometry change the resolution of an image
\-resize geometry resize the image
\-rotate degrees apply Paeth rotation to the image
\-strip strip image of all profiles and comments
\-trim trim image edges
Image Sequence Operators:
\-coalesce merge a sequence of images
\-flatten flatten a sequence of images
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
In addition to those listed above, you can specify these standard X resources as command line options: \-background, \-bordercolor, \-borderwidth, \-font, \-foreground, \-iconGeometry, \-iconic, \-name, \-mattecolor, \-shared-memory, or \-title.
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
Buttons:
1 press to map or unmap the Command widget
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,69 @@
.TH compare 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
compare \- mathematically and visually annotate the difference between an image and its reconstruction.
.SH SYNOPSIS
.TP
\fBcompare\fP \fIinput-file\fP \fIinput-file\fP [\fIoptions\fP] \fIoutput-file\fP
.SH OVERVIEW
The \fBcompare\fP program is a member of the ImageMagick(1) suite of tools. Use it to mathematically and visually annotate the difference between an image and its reconstruction.
For more information about the compare command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/compare.html or http://www.imagemagick.org/script/compare.php.
.SH DESCRIPTION
Image Settings:
\-authenticate value decrypt image with this password
\-channel type apply option to select image channels
\-colorspace type alternate image colorspace
\-compose operator set image composite operator
\-compress type type of pixel compression when writing the image
\-decipher filename convert cipher pixels to plain pixels
\-define format:option
define one or more image format options
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-encipher filename convert plain pixels to cipher pixels
\-extract geometry extract area from image
\-format "string" output formatted image characteristics
\-fuzz distance colors within this distance are considered equal
\-identify identify the format and characteristics of the image
\-interlace type type of image interlacing scheme
\-highlight-color color
emphasize pixel differences with this color
\-limit type value pixel cache resource limit
\-lowlight-color color
de-emphasize pixel differences with this color
\-metric type measure differences between images with this metric
\-monitor monitor progress
\-profile filename add, delete, or apply an image profile
\-quality value JPEG/MIFF/PNG compression level
\-quiet suppress all warning messages
\-quantize colorspace reduce colors in this colorspace
\-regard-warnings pay attention to warning messages
\-sampling-factor geometry
horizontal and vertical sampling factor
\-seed value seed a new sequence of pseudo-random numbers
\-set attribute value set an image attribute
\-size geometry width and height of image
\-subimage-search search for subimage
\-synchronize synchronize image to storage device
\-taint declare the image as modified
\-transparent-color color
transparent color
\-type type image type
\-verbose print detailed information about the image
\-virtual-pixel method
virtual pixel access method
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,106 @@
.TH composite 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
composite \- overlaps one image over another.
.SH SYNOPSIS
.TP
\fBcomposite\fP \fB[\fP \fIoptions\fP \fB... ]\fP \fIchange-file base-file\fP \fB[\fP \fImask-file\fP \fB]\fP \fIoutput-image\fP
.SH OVERVIEW
The \fBcomposite\fP program is a member of the ImageMagick(1) suite of tools. Use it to overlap one image over another.
For more information about the composite command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/composite.html or http://www.imagemagick.org/script/composite.php.
.SH DESCRIPTION
Image Settings:
\-affine matrix affine transform matrix
\-authenticate value decrypt image with this password
\-blue-primary point chromaticity blue primary point
\-channel type apply option to select image channels
\-colorspace type alternate image colorspace
\-comment string annotate image with comment
\-compose operator composite operator
\-compress type type of pixel compression when writing the image
\-decipher filename convert cipher pixels to plain pixels
\-define format:option
define one or more image format options
\-depth value image depth
\-density geometry horizontal and vertical density of the image
\-display server get image or font from this X server
\-dispose method layer disposal method
\-dither method apply error diffusion to image
\-encipher filename convert plain pixels to cipher pixels
\-encoding type text encoding type
\-endian type endianness (MSB or LSB) of the image
\-filter type use this filter when resizing an image
\-font name render text with this font
\-format "string" output formatted image characteristics
\-gravity type which direction to gravitate towards
\-green-primary point chromaticity green primary point
\-interlace type type of image interlacing scheme
\-interpolate method pixel color interpolation method
\-label string assign a label to an image
\-limit type value pixel cache resource limit
\-matte store matte channel if the image has one
\-monitor monitor progress
\-page geometry size and location of an image canvas (setting)
\-pointsize value font point size
\-quality value JPEG/MIFF/PNG compression level
\-quiet suppress all warning messages
\-red-primary point chromaticity red primary point
\-regard-warnings pay attention to warning messages
\-sampling-factor geometry
horizontal and vertical sampling factor
\-scene value image scene number
\-seed value seed a new sequence of pseudo-random numbers
\-size geometry width and height of image
\-support factor resize support: > 1.0 is blurry, < 1.0 is sharp
\-synchronize synchronize image to storage device
\-taint declare the image as modified
\-transparent-color color
transparent color
\-treedepth value color tree depth
\-tile repeat composite operation across and down image
\-units type the units of image resolution
\-verbose print detailed information about the image
\-virtual-pixel method
virtual pixel access method
\-white-point point chromaticity white point
Image Operators:
\-blend geometry blend images
\-colors value preferred number of colors in the image
\-displace geometry shift image pixels defined by a displacement map
\-dissolve value dissolve the two images a given percent
\-extract geometry extract area from image
\-geometry geometry location of the composite image
\-identify identify the format and characteristics of the image
\-monochrome transform image to black and white
\-negate replace each pixel with its complementary color
\-profile filename add ICM or IPTC information profile to image
\-quantize colorspace reduce colors in this colorspace
\-repage geometry size and location of an image canvas (operator)
\-rotate degrees apply Paeth rotation to the image
\-resize geometry resize the image
\-sharpen geometry sharpen the image
\-stegano offset hide watermark within an image
\-stereo combine two image to create a stereo anaglyph
\-strip strip image of all profiles and comments
\-thumbnail geometry create a thumbnail of the image
\-transform affine transform image
\-type type image type
\-unsharp geometry sharpen the image
\-watermark geometry percent brightness and saturation of a watermark
\-write filename write images to this file
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,34 @@
.TH conjure 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
conjure \- interprets and executes scripts written in the Magick Scripting Language (MSL).
.SH SYNOPSIS
.TP
\fBconjure\fP [\fIoptions\fP] \fIscript.msl\fP
.SH OVERVIEW
The \fBconjure\fP program is a member of the ImageMagick(1) suite of tools. Use it to process a Magick Scripting Language (MSL) script. The Magick scripting language (MSL) will primarily benefit those that want to accomplish custom image processing tasks but do not wish to program, or those that do not have access to a Perl interpreter or a compiler.
For more information about the conjure command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/conjure.html or http://www.imagemagick.org/script/conjure.php.
.SH DESCRIPTION
Image Settings:
\-monitor monitor progress
\-quiet suppress all warning messages
\-regard-warnings pay attention to warning messages
\-seed value seed a new sequence of pseudo-random numbers
\-verbose print detailed information about the image
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
In additiion, define any key value pairs required by your script. For example,
conjure \-size 100x100 \-color blue \-foo bar script.msl
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,276 @@
.TH convert 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
convert \- convert between image formats as well as resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more.
.SH SYNOPSIS
.TP
\fBconvert\fP [\fIinput-option\fP] \fIinput-file\fP [\fIoutput-option\fP] \fIoutput-file\fP
.SH OVERVIEW
The \fBconvert\fP program is a member of the ImageMagick(1) suite of tools. Use it to convert between image formats as well as resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more.
For more information about the convert command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/convert.html or http://www.imagemagick.org/script/convert.php.
.SH DESCRIPTION
Image Settings:
\-adjoin join images into a single multi-image file
\-affine matrix affine transform matrix
\-antialias remove pixel-aliasing
\-authenticate value decrypt image with this password
\-background color background color
\-bias value add bias when convolving an image
\-black-point-compensation
use black point compensation
\-blue-primary point chromaticity blue primary point
\-bordercolor color border color
\-caption string assign a caption to an image
\-cdl filename color correct with a color decision list
\-channel type apply option to select image channels
\-colors value preferred number of colors in the image
\-colorspace type alternate image colorspace
\-comment string annotate image with comment
\-compose operator set image composite operator
\-compress type type of pixel compression when writing the image
\-decipher filename convert cipher pixels to plain pixels
\-define format:option
define one or more image format options
\-delay value display the next image after pausing
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-direction type render text right-to-left or left-to-right
\-display server get image or font from this X server
\-dispose method layer disposal method
\-dither method apply error diffusion to image
\-encipher filename convert plain pixels to cipher pixels
\-encoding type text encoding type
\-endian type endianness (MSB or LSB) of the image
\-family name render text with this font family
\-features distance analyze image features (e.g. contrast, correlation)
\-fill color color to use when filling a graphic primitive
\-filter type use this filter when resizing an image
\-flatten flatten a sequence of images
\-font name render text with this font
\-format "string" output formatted image characteristics
\-fuzz distance colors within this distance are considered equal
\-gravity type horizontal and vertical text placement
\-green-primary point chromaticity green primary point
\-intent type type of rendering intent when managing the image color
\-interlace type type of image interlacing scheme
\-interpolate method pixel color interpolation method
\-kerning value set the space between two letters
\-label string assign a label to an image
\-limit type value pixel cache resource limit
\-loop iterations add Netscape loop extension to your GIF animation
\-mask filename associate a mask with the image
\-matte store matte channel if the image has one
\-mattecolor color frame color
\-monitor monitor progress
\-orient type image orientation
\-origin geometry image origin
\-page geometry size and location of an image canvas (setting)
\-ping efficiently determine image attributes
\-pointsize value font point size
\-preview type image preview type
\-quality value JPEG/MIFF/PNG compression level
\-quiet suppress all warning messages
\-red-primary point chromaticity red primary point
\-regard-warnings pay attention to warning messages
\-sampling-factor geometry
horizontal and vertical sampling factor
\-scene value image scene number
\-seed value seed a new sequence of pseudo-random numbers
\-size geometry width and height of image
\-statistic type geometry
replace each pixel with corresponding statistic from the neighborhood
\-stretch type render text with this font stretch
\-stroke color graphic primitive stroke color
\-strokewidth value graphic primitive stroke width
\-style type render text with this font style
\-support factor resize support: > 1.0 is blurry, < 1.0 is sharp
\-synchronize synchronize image to storage device
\-taint declare the image as modified
\-texture filename name of texture to tile onto the image background
\-tile-offset geometry
tile offset
\-treedepth value color tree depth
\-transparent-color color
transparent color
\-undercolor color annotation bounding box color
\-units type the units of image resolution
\-verbose print detailed information about the image
\-view FlashPix viewing transforms
\-virtual-pixel method
virtual pixel access method
\-weight type render text with this font weight
\-white-point point chromaticity white point
Image Operators:
\-adaptive-blur geometry
adaptively blur pixels; decrease effect near edges
\-adaptive-resize geometry
adaptively resize image with data dependent triangulation
\-adaptive-sharpen geometry
adaptively sharpen pixels; increase effect near edges
\-annotate geometry text
annotate the image with text
\-auto-orient automatically orient image
\-black-threshold value
force all pixels below the threshold into black
\-blur geometry reduce image noise and reduce detail levels
\-border geometry surround image with a border of color
\-charcoal radius simulate a charcoal drawing
\-chop geometry remove pixels from the image interior
\-clamp keep pixel values in range (0-QuantumRange)
\-clip clip along the first path from the 8BIM profile
\-clip-mask filename associate a clip mask with the image
\-clip-path id clip along a named path from the 8BIM profile
\-colorize value colorize the image with the fill color
\-color-matrix matrix apply color correction to the image
\-contrast enhance or reduce the image contrast
\-contrast-stretch geometry
improve contrast by `stretching' the intensity range
\-convolve coefficients
apply a convolution kernel to the image
\-cycle amount cycle the image colormap
\-despeckle reduce the speckles within an image
\-draw string annotate the image with a graphic primitive
\-edge radius apply a filter to detect edges in the image
\-emboss radius emboss an image
\-enhance apply a digital filter to enhance a noisy image
\-equalize perform histogram equalization to an image
\-evaluate operator value
evaluate an arithmetic, relational, or logical expression
\-extent geometry set the image size
\-extract geometry extract area from image
\-fft implements the discrete Fourier transform (DFT)
\-flip flip image vertically
\-floodfill geometry color
floodfill the image with color
\-flop flop image horizontally
\-frame geometry surround image with an ornamental border
\-function name apply a function to the image
\-gamma value level of gamma correction
\-gaussian-blur geometry
reduce image noise and reduce detail levels
\-geometry geometry preferred size or location of the image
\-identify identify the format and characteristics of the image
\-ift implements the inverse discrete Fourier transform (DFT)
\-implode amount implode image pixels about the center
\-lat geometry local adaptive thresholding
\-layers method optimize or compare image layers
\-level value adjust the level of image contrast
\-linear-stretch geometry
improve contrast by `stretching with saturation' the intensity range
\-median geometry apply a median filter to the image
\-mode geometry make each pixel the 'predominant color' of the neighborhood
\-modulate value vary the brightness, saturation, and hue
\-monochrome transform image to black and white
\-morphology method kernel
apply a morphology method to the image
\-motion-blur geometry
simulate motion blur
\-negate replace each pixel with its complementary color
\-noise geometry add or reduce noise in an image
\-normalize transform image to span the full range of colors
\-opaque color change this color to the fill color
\-ordered-dither NxN
add a noise pattern to the image with specific amplitudes
\-paint radius simulate an oil painting
\-perceptible epsilon
pixel value less than |epsilon| become epsilon or -epsilon
\-polaroid angle simulate a Polaroid picture
\-posterize levels reduce the image to a limited number of color levels
\-print string interpret string and print to console
\-profile filename add, delete, or apply an image profile
\-quantize colorspace reduce colors in this colorspace
\-radial-blur angle radial blur the image
\-raise value lighten/darken image edges to create a 3-D effect
\-random-threshold low,high
random threshold the image
\-region geometry apply options to a portion of the image
\-render render vector graphics
\-repage geometry size and location of an image canvas
\-resample geometry change the resolution of an image
\-resize geometry resize the image
\-roll geometry roll an image vertically or horizontally
\-rotate degrees apply Paeth rotation to the image
\-sample geometry scale image with pixel sampling
\-scale geometry scale the image
\-segment values segment an image
\-selective-blur geometry
selectively blur pixels within a contrast threshold
\-sepia-tone threshold
simulate a sepia-toned photo
\-set property value set an image property
\-shade degrees shade the image using a distant light source
\-shadow geometry simulate an image shadow
\-sharpen geometry sharpen the image
\-shave geometry shave pixels from the image edges
\-shear geometry slide one edge of the image along the X or Y axis
\-sigmoidal-contrast geometry
lightness rescaling using sigmoidal contrast enhancement
\-sketch geometry simulate a pencil sketch
\-solarize threshold negate all pixels above the threshold level
\-splice geometry splice the background color into the image
\-spread amount displace image pixels by a random amount
\-strip strip image of all profiles and comments
\-swirl degrees swirl image pixels about the center
\-threshold value threshold the image
\-thumbnail geometry create a thumbnail of the image
\-tile filename tile image when filling a graphic primitive
\-tint value tint the image with the fill color
\-transform affine transform image
\-transparent color make this color transparent within the image
\-transpose flip image vertically and rotate 90 degrees
\-transverse flop image horizontally and rotate 270 degrees
\-trim trim image edges
\-type type image type
\-unique-colors discard all but one of any pixel color
\-unsharp geometry sharpen the image
\-vignette geometry soften the edges of the image in vignette style
\-wave geometry alter an image along a sine wave
\-white-threshold value
force all pixels above the threshold into white
Image Sequence Operators:
\-affinity filename transform image colors to match this set of colors
\-append append an image sequence top to bottom (use +append for left to right)
\-clut apply a color lookup table to the image
\-coalesce merge a sequence of images
\-combine combine a sequence of images
\-composite composite image
\-crop geometry cut out a rectangular region of the image
\-deconstruct break down an image sequence into constituent parts
\-evaluate-sequence operator
evaluate an arithmetic, relational, or logical expression
\-flatten flatten a sequence of images
\-fx expression apply mathematical expression to an image channel(s)
\-hald-clut apply a Hald color lookup table to the image
\-morph value morph an image sequence
\-mosaic create a mosaic from an image sequence
\-poly terms build a polynomial from the image sequence and the corresponding terms (coefficients and degree pairs)
\-process arguments process the image with a custom image filter
\-separate separate an image channel into a grayscale image
\-smush geometry smush an image sequence together
\-write filename write images to this file
Image Stack Operators:
\-clone indexes clone an image
\-delete indexes delete the image from the image sequence
\-duplicate count,indexes
duplicate an image one or more times
\-insert index insert last image into the image sequence
\-swap indexes swap two images in the image sequence
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
Use any setting or operator as an \fIoutput-option\fP. Only a limited number of setting are \fIinput-option\fP. They include: \-antialias, \-caption, \-density, \-define, \-encoding, \-font, \-pointsize, \-size, and \-texture as well as any of the miscellaneous options.
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,132 @@
.TH display 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
display \- displays an image or image sequence on any X server.
.SH SYNOPSIS
.TP
\fBdisplay\fP [\fIoptions\fP] \fIinput-file\fP
.SH OVERVIEW
The \fBdisplay\fP program is a member of the ImageMagick(1) suite of tools. Use it to display an image or image sequence on any X server.
For more information about the display command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/display.html or http://www.imagemagick.org/script/display.php.
.SH DESCRIPTION
Image Settings:
\-antialias remove pixel-aliasing
\-authenticate value decrypt image with this password
\-backdrop display image centered on a backdrop
\-channel type apply option to select image channels
\-colormap type Shared or Private
\-colorspace type alternate image colorspace
\-comment string annotate image with comment
\-compress type type of pixel compression when writing the image
\-decipher filename convert cipher pixels to plain pixels
\-define format:option
define one or more image format options
\-delay value display the next image after pausing
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-display server display image to this X server
\-dispose method layer disposal method
\-dither method apply error diffusion to image
\-endian type endianness (MSB or LSB) of the image
\-equalize perform histogram equalization to an image
\-filter type use this filter when resizing an image
\-format "string" output formatted image characteristics
\-fuzz distance colors within this distance are considered equal
\-geometry geometry preferred size and location of the Image window
\-gravity type horizontal and vertical backdrop placement
\-identify identify the format and characteristics of the image
\-immutable displayed image cannot be modified
\-interlace type type of image interlacing scheme
\-interpolate method pixel color interpolation method
\-label string assign a label to an image
\-limit type value pixel cache resource limit
\-loop iterations loop images then exit
\-map type display image using this Standard Colormap
\-matte store matte channel if the image has one
\-monitor monitor progress
\-page geometry size and location of an image canvas
\-profile filename add, delete, or apply an image profile
\-quality value JPEG/MIFF/PNG compression level
\-quantize colorspace reduce colors in this colorspace
\-quiet suppress all warning messages
\-regard-warnings pay attention to warning messages
\-remote command execute a command in an remote display process
\-repage geometry size and location of an image canvas (operator)
\-sampling-factor geometry
horizontal and vertical sampling factor
\-scenes range image scene range
\-seed value seed a new sequence of pseudo-random numbers
\-set property value set an image property
\-size geometry width and height of image
\-support factor resize support: > 1.0 is blurry, < 1.0 is sharp
\-texture filename name of texture to tile onto the image background
\-transparent-color color
transparent color
\-treedepth value color tree depth
\-update seconds detect when image file is modified and redisplay
\-verbose print detailed information about the image
\-visual type display image using this visual type
\-virtual-pixel method
virtual pixel access method
\-window id display image to background of this window
\-window-group id exit program when this window id is destroyed
\-write filename write image to a file
Image Operators:
\-auto-orient automatically orient image
\-border geometry surround image with a border of color
\-clip clip along the first path from the 8BIM profile
\-clip-path id clip along a named path from the 8BIM profile
\-colors value preferred number of colors in the image
\-contrast enhance or reduce the image contrast
\-crop geometry preferred size and location of the cropped image
\-despeckle reduce the speckles within an image
\-edge factor apply a filter to detect edges in the image
\-enhance apply a digital filter to enhance a noisy image
\-extract geometry extract area from image
\-flip flip image in the vertical direction
\-flop flop image in the horizontal direction
\-frame geometry surround image with an ornamental border
\-gamma value level of gamma correction
\-monochrome transform image to black and white
\-negate replace each pixel with its complementary color
\-raise value lighten/darken image edges to create a 3-D effect
\-resample geometry change the resolution of an image
\-resize geometry resize the image
\-roll geometry roll an image vertically or horizontally
\-rotate degrees apply Paeth rotation to the image
\-sample geometry scale image with pixel sampling
\-segment value segment an image
\-sharpen geometry sharpen the image
\-strip strip image of all profiles and comments
\-trim trim image edges
Image Sequence Operators:
\-coalesce merge a sequence of images
\-flatten flatten a sequence of images
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
In addition to those listed above, you can specify these standard X resources as command line options: \-background, \-bordercolor, \-borderwidth, \-font, \-foreground, \-iconGeometry, \-iconic, \-mattecolor, \-name, \-shared-memory, \-usePixmap, or \-title.
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
Buttons:
1 press to map or unmap the Command widget
2 press and drag to magnify a region of an image
3 press to load an image from a visual image directory
.SH NOTE
The display program defaults to the X screen resolution. To display vector formats at their intended size, override the default resolution:
display -density 72 drawing.svg
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,68 @@
.TH identify 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
identify \- describes the format and characteristics of one or more image files.
.SH SYNOPSIS
.TP
\fBidentify\fP [\fIoptions\fP] \fIinput-file\fP
.SH OVERVIEW
The \fBidentify\fP program is a member of the ImageMagick(1) suite of tools. It describes the format and characteristics of one or more image files. It also reports if an image is incomplete or corrupt. The information returned includes the image number, the file name, the width and height of the image, whether the image is colormapped or not, the number of colors in the image (by default off use \fI-define unique=true\fP option), the number of bytes in the image, the format of the image (JPEG, PNM, etc.), and finally the number of seconds it took to read and process the image. Many more attributes are available with the verbose option.
For more information about the identify command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/identify.html or http://www.imagemagick.org/script/identify.php.
.SH DESCRIPTION
Image Settings:
\-antialias remove pixel-aliasing
\-authenticate value decrypt image with this password
\-channel type apply option to select image channels
\-crop geometry cut out a rectangular region of the image
\-define format:option
define one or more image format options
\-define unique=true return the number of unique colors in the image
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-endian type endianness (MSB or LSB) of the image
\-extract geometry extract area from image
\-features distance analyze image features (e.g. contrast, correlation)
\-format "string" output formatted image characteristics
\-fuzz distance colors within this distance are considered equal
\-interlace type type of image interlacing scheme
\-interpolate method pixel color interpolation method
\-limit type value pixel cache resource limit
\-list type Color, Configure, Delegate, Format, Magic, Module,
Resource, or Type
\-matte store matte channel if the image has one
\-monitor monitor progress
\-ping efficiently determine image attributes
\-quiet suppress all warning messages
\-regard-warnings pay attention to warning messages
\-sampling-factor geometry
horizontal and vertical sampling factor
\-seed value seed a new sequence of pseudo-random numbers
\-set attribute value set an image attribute
\-size geometry width and height of image
\-strip strip image of all profiles and comments
\-unique display the number of unique colors in the image
\-units type the units of image resolution
\-verbose print detailed information about the image
\-virtual-pixel method
virtual pixel access method
Image Operators:
\-negate replace each pixel with its complementary color
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
.SH NOTE
Although some options appear to modify the file to be identified, the identify command is strictly \fBread only\fP. For instance, the crop option crops the in-memory image and then describes the result.
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,97 @@
.TH import 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
import \- saves any visible window on an X server and outputs it as an image file. You can capture a single window, the entire screen, or any rectangular portion of the screen.
.SH SYNOPSIS
.TP
\fBimport\fP [\fIoptions\fP] \fIoutput-file\fP
.SH OVERVIEW
The \fBimport\fP program is a member of the ImageMagick(1) suite of tools. Use it to capture some or all of an X server screen and save the image to a file.
For more information about the import command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/import.html or http://www.imagemagick.org/script/import.php.
.SH DESCRIPTION
Image Settings:
\-adjoin join images into a single multi-image file
\-border include window border in the output image
\-channel type apply option to select image channels
\-colorspace type alternate image colorspace
\-comment string annotate image with comment
\-compress type type of pixel compression when writing the image
\-define format:option
define one or more image format options
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-descend obtain image by descending window hierarchy
\-display server X server to contact
\-dispose method layer disposal method
\-dither method apply error diffusion to image
\-delay value display the next image after pausing
\-encipher filename convert plain pixels to cipher pixels
\-endian type endianness (MSB or LSB) of the image
\-encoding type text encoding type
\-format "string" output formatted image characteristics
\-frame include window manager frame
\-gravity direction which direction to gravitate towards
\-identify identify the format and characteristics of the image
\-interlace type None, Line, Plane, or Partition
\-interpolate method pixel color interpolation method
\-label string assign a label to an image
\-limit type value Area, Disk, Map, or Memory resource limit
\-monitor monitor progress
\-page geometry size and location of an image canvas
\-pause value seconds delay between snapshots
\-pointsize value font point size
\-quality value JPEG/MIFF/PNG compression level
\-quiet suppress all warning messages
\-regard-warnings pay attention to warning messages
\-sampling-factor geometry
horizontal and vertical sampling factor
\-scene value image scene number
\-screen select image from root window
\-seed value seed a new sequence of pseudo-random numbers
\-set property value set an image property
\-silent operate silently, i.e. don't ring any bells
\-snaps value number of screen snapshots
\-support factor resize support: > 1.0 is blurry, < 1.0 is sharp
\-synchronize synchronize image to storage device
\-taint declare the image as modified
\-transparent-color color
transparent color
\-treedepth value color tree depth
\-verbose print detailed information about the image
\-virtual-pixel method
Constant, Edge, Mirror, or Tile
\-window id select window with this id or name
Image Operators:
\-annotate geometry text
annotate the image with text
\-colors value preferred number of colors in the image
\-crop geometry preferred size and location of the cropped image
\-geometry geometry preferred size or location of the image
\-help print program options
\-monochrome transform image to black and white
\-negate replace each pixel with its complementary color
\-repage geometry size and location of an image canvas
\-quantize colorspace reduce colors in this colorspace
\-resize geometry resize the image
\-rotate degrees apply Paeth rotation to the image
\-strip strip image of all profiles and comments
\-thumbnail geometry create a thumbnail of the image
\-transparent color make this color transparent within the image
\-trim trim image edges
\-type type image type
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
By default, 'file' is written in the MIFF image format. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,276 @@
.TH mogrify 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
mogrify \- resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more. Mogrify overwrites the original image file, whereas, convert(1) writes to a different image file.
.SH SYNOPSIS
.TP
\fBmogrify\fP [\fIoptions\fP] \fIinput-file\fP
.SH OVERVIEW
The \fBmogrify\fP program is a member of the ImageMagick(1) suite of tools. Use it to resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more. This tool is similar to convert(1) except the original image file is overwritten with any changes you request.
For more information about the mogrify command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/mogrify.html or http://www.imagemagick.org/script/mogrify.php.
.SH DESCRIPTION
Image Settings:
\-adjoin join images into a single multi-image file
\-affine matrix affine transform matrix
\-antialias remove pixel-aliasing
\-authenticate value decrypt image with this password
\-background color background color
\-bias value add bias when convolving an image
\-black-point-compensation
use black point compensation
\-blue-primary point chromaticity blue primary point
\-bordercolor color border color
\-caption string assign a caption to an image
\-cdl filename color correct with a color decision list
\-channel type apply option to select image channels
\-colors value preferred number of colors in the image
\-colorspace type alternate image colorspace
\-comment string annotate image with comment
\-compose operator set image composite operator
\-compress type type of pixel compression when writing the image
\-decipher filename convert cipher pixels to plain pixels
\-define format:option
define one or more image format options
\-delay value display the next image after pausing
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-direction type render text right-to-left or left-to-right
\-display server get image or font from this X server
\-dispose method layer disposal method
\-dither method apply error diffusion to image
\-encipher filename convert plain pixels to cipher pixels
\-encoding type text encoding type
\-endian type endianness (MSB or LSB) of the image
\-family name render text with this font family
\-features distance analyze image features (e.g. contrast, correlation)
\-fill color color to use when filling a graphic primitive
\-filter type use this filter when resizing an image
\-flatten flatten a sequence of images
\-font name render text with this font
\-format type image format type
\-function name apply a function to the image
\-fuzz distance colors within this distance are considered equal
\-gravity type horizontal and vertical text placement
\-green-primary point chromaticity green primary point
\-intent type type of rendering intent when managing the image color
\-interlace type type of image interlacing scheme
\-interpolate method pixel color interpolation method
\-kerning value set the space between two letters
\-label string assign a label to an image
\-limit type value pixel cache resource limit
\-loop iterations add Netscape loop extension to your GIF animation
\-mask filename associate a mask with the image
\-matte store matte channel if the image has one
\-mattecolor color frame color
\-monitor monitor progress
\-morphology method kernel
apply a morphology method to the image
\-orient type image orientation
\-origin geometry image origin
\-page geometry size and location of an image canvas (setting)
\-path path write images to this path on disk
\-ping efficiently determine image attributes
\-pointsize value font point size
\-preview type image preview type
\-quality value JPEG/MIFF/PNG compression level
\-quiet suppress all warning messages
\-red-primary point chromaticity red primary point
\-regard-warnings pay attention to warning messages
\-sampling-factor geometry
horizontal and vertical sampling factor
\-scene value image scene number
\-seed value seed a new sequence of pseudo-random numbers
\-size geometry width and height of image
\-stretch type render text with this font stretch
\-stroke color graphic primitive stroke color
\-strokewidth value graphic primitive stroke width
\-style type render text with this font style
\-support factor resize support: > 1.0 is blurry, < 1.0 is sharp
\-synchronize synchronize image to storage device
\-taint declare the image as modified
\-texture filename name of texture to tile onto the image background
\-tile-offset geometry
tile offset
\-treedepth value color tree depth
\-transparent-color color
transparent color
\-undercolor color annotation bounding box color
\-units type the units of image resolution
\-verbose print detailed information about the image
\-view FlashPix viewing transforms
\-virtual-pixel method
virtual pixel access method
\-weight type render text with this font weight
\-white-point point chromaticity white point
Image Operators:
\-adaptive-blur geometry
adaptively blur pixels; decrease effect near edges
\-adaptive-resize geometry
adaptively resize image with data dependent triangulation
\-adaptive-sharpen geometry
adaptively sharpen pixels; increase effect near edges
\-annotate geometry text
annotate the image with text
\-auto-orient automatically orient image
\-black-threshold value
force all pixels below the threshold into black
\-blur geometry reduce image noise and reduce detail levels
\-border geometry surround image with a border of color
\-charcoal radius simulate a charcoal drawing
\-chop geometry remove pixels from the image interior
\-clamp keep pixel values in range (0-QuantumRange)
\-clip clip along the first path from the 8BIM profile
\-clip-mask filename associate a clip mask with the image
\-clip-path id clip along a named path from the 8BIM profile
\-colorize value colorize the image with the fill color
\-color-matrix matrix apply color correction to the image
\-contrast enhance or reduce the image contrast
\-contrast-stretch geometry
improve contrast by `stretching' the intensity range
\-convolve coefficients
apply a convolution kernel to the image
\-cycle amount cycle the image colormap
\-despeckle reduce the speckles within an image
\-draw string annotate the image with a graphic primitive
\-edge radius apply a filter to detect edges in the image
\-emboss radius emboss an image
\-enhance apply a digital filter to enhance a noisy image
\-equalize perform histogram equalization to an image
\-evaluate operator value
evaluate an arithmetic, relational, or logical expression
\-extent geometry set the image size
\-extract geometry extract area from image
\-fft implements the discrete Fourier transform (DFT)
\-flip flip image vertically
\-floodfill geometry color
floodfill the image with color
\-flop flop image horizontally
\-frame geometry surround image with an ornamental border
\-gamma value level of gamma correction
\-gaussian-blur geometry
reduce image noise and reduce detail levels
\-geometry geometry preferred size or location of the image
\-ift implements the inverse discrete Fourier transform (DFT)
\-help print program options
\-identify identify the format and characteristics of the image
\-implode amount implode image pixels about the center
\-lat geometry local adaptive thresholding
\-layers method optimize or compare image layers
\-level value adjust the level of image contrast
\-linear-stretch geometry
improve contrast by `stretching with saturation' the intensity range
\-median geometry apply a median filter to the image
\-mode geometry make each pixel the 'predominant color' of the neighborhood
\-modulate value vary the brightness, saturation, and hue
\-monochrome transform image to black and white
\-motion-blur geometry
simulate motion blur
\-negate replace each pixel with its complementary color
\-noise geometry add or reduce noise in an image
\-normalize transform image to span the full range of colors
\-opaque color change this color to the fill color
\-ordered-dither NxN
add a noise pattern to the image with specific amplitudes
\-paint radius simulate an oil painting
\-perceptible epsilon
pixel value less than |epsilon| become epsilon or -epsilon
\-polaroid angle simulate a Polaroid picture
\-posterize levels reduce the image to a limited number of color levels
\-print string interpret string and print to console
\-profile filename add, delete, or apply an image profile
\-quantize colorspace reduce colors in this colorspace
\-radial-blur angle radial blur the image
\-raise value lighten/darken image edges to create a 3-D effect
\-random-threshold low,high
random threshold the image
\-region geometry apply options to a portion of the image
\-render render vector graphics
\-repage geometry size and location of an image canvas
\-resample geometry change the resolution of an image
\-resize geometry resize the image
\-roll geometry roll an image vertically or horizontally
\-rotate degrees apply Paeth rotation to the image
\-sample geometry scale image with pixel sampling
\-scale geometry scale the image
\-segment values segment an image
\-selective-blur geometry
selectively blur pixels within a contrast threshold
\-sepia-tone threshold
simulate a sepia-toned photo
\-set property value set an image property
\-shade degrees shade the image using a distant light source
\-shadow geometry simulate an image shadow
\-sharpen geometry sharpen the image
\-shave geometry shave pixels from the image edges
\-shear geometry slide one edge of the image along the X or Y axis
\-sigmoidal-contrast geometry
lightness rescaling using sigmoidal contrast enhancement
\-sketch geometry simulate a pencil sketch
\-solarize threshold negate all pixels above the threshold level
\-splice geometry splice the background color into the image
\-spread amount displace image pixels by a random amount
\-statistic type geometry
replace each pixel with corresponding statistic from the neighborhood
\-strip strip image of all profiles and comments
\-swirl degrees swirl image pixels about the center
\-threshold value threshold the image
\-thumbnail geometry create a thumbnail of the image
\-tile filename tile image when filling a graphic primitive
\-tint value tint the image with the fill color
\-transform affine transform image
\-transparent color make this color transparent within the image
\-transpose flip image vertically and rotate 90 degrees
\-transverse flop image horizontally and rotate 270 degrees
\-trim trim image edges
\-type type image type
\-unique-colors discard all but one of any pixel color
\-unsharp geometry sharpen the image
\-vignette geometry soften the edges of the image in vignette style
\-wave geometry alter an image along a sine wave
\-white-threshold value
force all pixels above the threshold into white
Image Sequence Operators:
\-affinity filename transform image colors to match this set of colors
\-append append an image sequence top to botto (use +append for left to right)
\-clut apply a color lookup table to the image
\-coalesce merge a sequence of images
\-combine combine a sequence of images
\-composite composite image
\-crop geometry cut out a rectangular region of the image
\-deconstruct break down an image sequence into constituent parts
\-evaluate-sequence operator
evaluate an arithmetic, relational, or logical expression
\-flatten flatten a sequence of images
\-fx expression apply mathematical expression to an image channel(s)
\-hald-clut apply a Hald color lookup table to the image
\-morph value morph an image sequence
\-mosaic create a mosaic from an image sequence
\-poly terms build a polynomial from the image sequence and the corresponding terms (coefficients and degree pairs)
\-process arguments process the image with a custom image filter
\-separate separate an image channel into a grayscale image
\-smush geometry smush an image sequence together
\-write filename write images to this file
Image Stack Operators:
\-delete indexes delete the image from the image sequence
\-duplicate count,indexes
duplicate an image one or more times
\-insert index insert last image into the image sequence
\-swap indexes swap two images in the image sequence
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,134 @@
.TH montage 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
montage \- create a composite image by combining several separate images. The images are tiled on the composite image optionally adorned with a border, frame, image name, and more.
.SH SYNOPSIS
.TP
\fBmontage\fP \fIinput-file[s]\fP [\fIoptions\fP] \fIoutput-file\fP
.SH OVERVIEW
The \fBmontage\fP program is a member of the ImageMagick(1) suite of tools. Use it to create a composite image by combining several separate images. The images are tiled on the composite image optionally adorned with a border, frame, image name, and more.
For more information about the montage command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/montage.html or http://www.imagemagick.org/script/montage.php.
.SH DESCRIPTION
Image Settings:
\-adjoin join images into a single multi-image file
\-affine matrix affine transform matrix
\-authenticate value decrypt image with this password
\-blue-primary point chromaticity blue primary point
\-bordercolor color border color
\-channel type apply option to select image channels
\-colors value preferred number of colors in the image
\-colorspace type alternate image colorsapce
\-comment string annotate image with comment
\-compose operator composite operator
\-compress type type of pixel compression when writing the image
\-define format:option
define one or more image format options
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-display server query font from this X server
\-dispose method layer disposal method
\-dither method apply error diffusion to image
\-draw string annotate the image with a graphic primitive
\-encoding type text encoding type
\-endian type endianness (MSB or LSB) of the image
\-extract geometry extract area from image
\-fill color color to use when filling a graphic primitive
\-filter type use this filter when resizing an image
\-font name render text with this font
\-format "string" output formatted image characteristics
\-gamma value level of gamma correction
\-geometry geometry preferred tile and border sizes
\-gravity direction which direction to gravitate towards
\-green-primary point chromaticity green primary point
\-identify identify the format and characteristics of the image
\-interlace type type of image interlacing scheme
\-interpolate method pixel color interpolation method
\-kerning value set the space between two letters
\-label string assign a label to an image
\-limit type value pixel cache resource limit
\-matte store matte channel if the image has one
\-mattecolor color frame color
\-mode type framing style
\-monitor monitor progress
\-page geometry size and location of an image canvas (setting)
\-pointsize value font point size
\-profile filename add, delete, or apply an image profile
\-quality value JPEG/MIFF/PNG compression level
\-quantize colorspace reduce colors in this colorspace
\-quiet suppress all warning messages
\-red-primary point chromaticity red primary point
\-regard-warnings pay attention to warning messages
\-sampling-factor geometry
horizontal and vertical sampling factor
\-scenes range image scene range
\-seed value seed a new sequence of pseudo-random numbers
\-set attribute value set an image attribute
\-shadow add a shadow beneath a tile to simulate depth
\-size geometry width and height of image
\-stroke color color to use when stroking a graphic primitive
\-support factor resize support: > 1.0 is blurry, < 1.0 is sharp
\-synchronize synchronize image to storage device
\-texture filename name of texture to tile onto the image background
\-thumbnail geometry create a thumbnail of the image
\-tile geometry number of tiles per row and column
\-title string decorate the montage image with a title
\-transparent-color color
transparent color
\-treedepth value color tree depth
\-trim trim image edges
\-units type the units of image resolution
\-verbose print detailed information about the image
\-virtual-pixel method
virtual pixel access method
\-white-point point chromaticity white point
Image Operators:
\-adaptive-sharpen geometry
adaptively sharpen pixels; increase effect near edges
\-annotate geometry text
annotate the image with text
\-blur geometry reduce image noise and reduce detail levels
\-border geometry surround image with a border of color
\-crop geometry preferred size and location of the cropped image
\-flatten flatten a sequence of images
\-flip flip image in the vertical direction
\-flop flop image in the horizontal direction
\-frame geometry surround image with an ornamental border
\-monochrome transform image to black and white
\-polaroid angle simulate a Polaroid picture
\-repage geometry size and location of an image canvas (operator)
\-resize geometry resize the image
\-rotate degrees apply Paeth rotation to the image
\-strip strip image of all profiles and comments
\-transform affine transform image
\-transparent color make this color transparent within the image
\-type type image type
\-unsharp geometry sharpen the image
Image Sequence Operators:
\-coalesce merge a sequence of images
Image Stack Operators:
\-clone indexes clone an image
\-delete indexes delete the image from the image sequence
\-duplicate count,indexes
duplicate an image one or more times
\-insert index insert last image into the image sequence
\-swap indexes swap two images in the image sequence
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
In addition to those listed above, you can specify these standard X resources as command line options: \-background, \-bordercolor, \-borderwidth, \-font, \-mattecolor, or \-title.
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP

View file

@ -0,0 +1,57 @@
.TH stream 1 "Date: 2009/01/10 01:00:00" "ImageMagick"
.SH NAME
stream \- a lightweight tool to stream one or more pixel components of the image or portion of the image to your choice of storage formats.
.SH SYNOPSIS
.TP
\fBstream\fP [\fIoptions\fP] \fIinput-file\fP \fIoutput-file\fP
.SH OVERVIEW
\fBStream\fP is a lightweight tool to stream one or more pixel components of the image or portion of the image to your choice of storage formats. It writes the pixel components as they are read from the input image a row at a time making \fBstream\fP desirable when working with large images or when you require raw pixel components.
For more information about the stream command, point your browser to file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/stream.html or http://www.imagemagick.org/script/stream.php.
.SH DESCRIPTION
Image Settings:
\-authenticate value decrypt image with this password
\-channel type apply option to select image channels
\-colorspace type alternate image colorspace
\-compress type type of pixel compression when writing the image
\-define format:option
define one or more image format options
\-density geometry horizontal and vertical density of the image
\-depth value image depth
\-extract geometry extract area from image
\-identify identify the format and characteristics of the image
\-interlace type type of image interlacing scheme
\-interpolate method pixel color interpolation method
\-limit type value pixel cache resource limit
\-map components one or more pixel components
\-monitor monitor progress
\-quantize colorspace reduce colors in this colorspace
\-quiet suppress all warning messages
\-regard-warnings pay attention to warning messages
\-sampling-factor geometry
horizontal and vertical sampling factor
\-seed value seed a new sequence of pseudo-random numbers
\-set attribute value set an image attribute
\-size geometry width and height of image
\-storage-type type pixel storage type
\-synchronize synchronize image to storage device
\-transparent-color color
transparent color
\-verbose print detailed information about the image
\-virtual-pixel method
virtual pixel access method
Miscellaneous Options:
\-debug events display copious debugging information
\-help print program options
\-log format format of debugging information
\-list type print a list of supported option arguments
\-version print version information
By default, the image format of `file' is determined by its magic number. To specify a particular image format, precede the filename with an image format name and a colon (i.e. ps:image) or specify the image type as the filename suffix (i.e. image.ps). Specify 'file' as '-' for standard input or output.
.SH SEE ALSO
ImageMagick(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2013 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///home/santi/lms/ImageMagick-6.8.3-1/bin/share/doc/ImageMagick-6.8.3/www/license.html or http://www.imagemagick.org/script/license.php\fP