]> granicus.if.org Git - imagemagick/blob - PerlMagick/default/Magick.pm.in
e3ae787822df72cb61b0ad03d9ec0e8e17f0f6b6
[imagemagick] / PerlMagick / default / Magick.pm.in
1 package Image::Magick;
2
3 #  Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization
4 #  dedicated to making software imaging solutions freely available.
5 #
6 #  You may not use this file except in compliance with the License.  You may
7 #  obtain a copy of the License at
8 #
9 #    http://www.imagemagick.org/script/license.php
10 #
11 #  Unless required by applicable law or agreed to in writing, software
12 #  distributed under the License is distributed on an "AS IS" BASIS,
13 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #  See the License for the specific language governing permissions and
15 #  limitations under the License.
16 #
17 #  Initial version, written by Kyle Shorter.
18
19 use strict;
20 use Carp;
21
22 use parent qw/Image::Magick::@MAGICK_ABI_SUFFIX@/;
23
24 1;
25 __END__
26
27 =head1 NAME
28
29 Image::Magick - objected-oriented Perl interface to ImageMagick for default quantum (@MAGICK_ABI_SUFFIX@). Use it to read, manipulate, or write an image or image sequence from within a Perl script.
30
31 =head1 SYNOPSIS
32
33   use Image::Magick;
34   $p = new Image::Magick;
35   $p->Read("imagefile");
36   $p->Set(attribute => value, ...)
37   ($a, ...) = $p->Get("attribute", ...)
38   $p->routine(parameter => value, ...)
39   $p->Mogrify("Routine", parameter => value, ...)
40   $p->Write("filename");
41
42 =head1 DESCRIPTION
43
44 This Perl extension allows the reading, manipulation and writing of
45 a large number of image file formats using the ImageMagick library.
46 It was originally developed to be used by CGI scripts for Web pages.
47
48 A web page has been set up for this extension. See:
49
50          file://@DOCUMENTATION_PATH@/www/perl-magick.html
51          http://www.imagemagick.org/script/perl-magick.php
52
53 If you have problems, go to
54
55    http://www.imagemagick.org/discourse-server/viewforum.php?f=7
56
57 =head1 AUTHOR
58
59 Kyle Shorter    magick-users@imagemagick.org
60
61 =head1 BUGS
62
63 Has all the bugs of ImageMagick and much, much more!
64
65 =head1 SEE ALSO
66
67 perl(1).
68
69 =cut