Go to main content

man pages section 3: Library Interfaces and Headers

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

Image::Magick::Q16 (3)

Name

Image::Magick::Q16 - oriented Perl interface to ImageMagick (Q16). Use it to create, edit, compose, or convert bitmap images from within a Perl script.

Synopsis

use Image::Magick::Q16;
$p = new Image::Magick::Q16;
$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                                     Q16(3)



NAME
       Image::Magick::Q16 - objected-oriented Perl interface to ImageMagick
       (Q16). Use it to create, edit, compose, or convert bitmap images from
       within a Perl script.

SYNOPSIS
         use Image::Magick::Q16;
         $p = new Image::Magick::Q16;
         $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/ImageMagick6/discussions/categories/development

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                            Q16(3)