Go to main content

man pages section 3: Library Interfaces and Headers

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

Image::Magick (3)

Name

Image::Magick - oriented Perl interface to ImageMagick for default quantum (Q16). 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

User Contributed Perl Documentation                                  Magick(3)



NAME
       Image::Magick - objected-oriented Perl interface to ImageMagick for
       default quantum (Q16). 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/www/perl-magick.html@EXTRA_DOC_DIR@
                https://imagemagick.org/script/perl-magick.php

       If you have problems, go to

          https://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!


ATTRIBUTES
       See attributes(7) for descriptions of the following attributes:


       +---------------+-------------------+
       |ATTRIBUTE TYPE | ATTRIBUTE VALUE   |
       +---------------+-------------------+
       |Availability   | image/imagemagick |
       +---------------+-------------------+
       |Stability      | Volatile          |
       +---------------+-------------------+

SEE ALSO
       perl(1).



NOTES
       Source code for open source software components in Oracle Solaris can
       be found at https://www.oracle.com/downloads/opensource/solaris-source-
       code-downloads.html.

       This software was built from source available at
       https://github.com/oracle/solaris-userland.  The original community
       source was downloaded from
       https://www.imagemagick.org//download/releases/ImageMagick-6.9.12-47.tar.gz.

       Further information about this software can be found on the open source
       community website at https://www.imagemagick.org/.



perl v5.32.0                      2022-06-28                         Magick(3)