Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

image::magick(3) [centos man page]

Magick(3)						User Contributed Perl Documentation						 Magick(3)

NAME
Image::Magick - objected-oriented Perl interface to ImageMagick. Use it to read, manipulate, or write an image or image sequence from within a Perl script. SYNOPSIS
use Image::Magick; $p = new Image::Magick; $p->Read("imagefile"); $p->Set(attribute => value, ...) ($a, ...) = $p->Get("attribute", ...) $p->routine(parameter => value, ...) $p->Mogrify("Routine", parameter => value, ...) $p->Write("filename"); DESCRIPTION
This Perl extension allows the reading, manipulation and writing of a large number of image file formats using the ImageMagick library. It was originally developed to be used by CGI scripts for Web pages. A web page has been set up for this extension. See: file:///usr/share/doc/ImageMagick-6.7.8/www/perl-magick.html http://www.imagemagick.org/script/perl-magick.php If you have problems, go to http://www.imagemagick.org/discourse-server/viewforum.php?f=7 AUTHOR
Kyle Shorter magick-users@imagemagick.org BUGS
Has all the bugs of ImageMagick and much, much more! SEE ALSO
perl(1). perl v5.16.3 2014-06-10 Magick(3)

Check Out this Related Man Page

conjure(1)						      General Commands Manual							conjure(1)

NAME
conjure - interprets and executes scripts written in the Magick Scripting Language (MSL). SYNOPSIS
conjure [options] script.msl OVERVIEW
The conjure program is a member of the ImageMagick(1) suite of tools. Use it to process a Magick Scripting Language (MSL) script. The Mag- ick 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:///usr/share/doc/ImageMagick-6.3.4/www/conjure.html or http://www.imagemagick.org/script/conjure.php. DESCRIPTION
Image Settings: -debug events display copious debugging information -help print program options -log format format of debugging information -monitor monitor progress -quiet suppress all warning messages -regard-warnings pay attention to warning messages -verbose print detailed information about the image -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 SEE-ALSO ImageMagick(1) COPYRIGHT
Copyright (C) 1999-2007 ImageMagick Studio LLC. Additional copyrights and licenses apply to this software, see file:///usr/share/doc/ImageMagick-6.3.4/www/license.php or http://www.imagemagick.org/script/license.php ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +--------------------+-----------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +--------------------+-----------------+ |Availability | SUNWimagick | +--------------------+-----------------+ |Interface Stability | External | +--------------------+-----------------+ NOTES
Source for ImageMagick is available on http://opensolaris.org. ImageMagick Date: 2005/03/01 01:00:00 conjure(1)
Man Page