1package Image::Magick; 2 3# Copyright 1999-2019 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# https://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 19use strict; 20use Carp; 21 22use parent qw/Image::Magick::@MAGICK_ABI_SUFFIX@/; 23 241; 25__END__ 26 27=head1 NAME 28 29Image::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 44This Perl extension allows the reading, manipulation and writing of 45a large number of image file formats using the ImageMagick library. 46It was originally developed to be used by CGI scripts for Web pages. 47 48A web page has been set up for this extension. See: 49 50 file://@DOCUMENTATION_PATH@/www/perl-magick.html 51 https://imagemagick.org/script/perl-magick.php 52 53If you have problems, go to 54 55 https://imagemagick.org/discourse-server/viewforum.php?f=7 56 57=head1 AUTHOR 58 59Kyle Shorter magick-users@imagemagick.org 60 61=head1 BUGS 62 63Has all the bugs of ImageMagick and much, much more! 64 65=head1 SEE ALSO 66 67perl(1). 68 69=cut 70