1Magick(3) User Contributed Perl Documentation Magick(3)
2
3
4
6 Graphics::Magick - Perl extension for calling GraphicsMagick's
7 libGraphicsMagick routines
8
10 use Graphics::Magick;
11 p = new Graphics::Magick;
12 p->Read("imagefile");
13 p->Set(attribute => value, ...)
14 ($a, ...) = p->Get("attribute", ...)
15 p->routine(parameter => value, ...)
16 p->Mogrify("Routine", parameter => value, ...)
17 p->Write("filename");
18
20 This Perl extension allows the reading, manipulation and writing of a
21 large number of image file formats using the GraphicsMagick library.
22 It was originally developed to be used by CGI scripts for Web pages.
23
24 A Web page has been set up for this extension. See:
25
26 http://www.GraphicsMagick.org/www/perl.html
27
29 Kyle Shorter magick@wizards.dupont.com
30
32 Has all the bugs of GraphicsMagick and much, much more!
33
35 perl(1).
36
37
38
39perl v5.28.1 2019-02-01 Magick(3)