The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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:

https://imagemagick.org/script/perl-magick.php

If you have problems, go to

https://github.com/ImageMagick/ImageMagick/issues

AUTHOR

Kyle Shorter magick-users@imagemagick.org

BUGS

Has all the bugs of ImageMagick and much, much more!

SEE ALSO

perl(1).