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

Magick-Config(1)					      General Commands Manual						  Magick-Config(1)

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