Sophie

Sophie

distrib > Mandriva > 2008.1 > i586 > by-pkgid > 703d980c580707c382b4e43e25965bc5 > files > 10883

php-manual-pt_BR-5.2.4-1mdv2008.1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>Image magick Functions</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="Manual do PHP"
HREF="index.html"><LINK
REL="UP"
TITLE="Referência das Funções"
HREF="funcref.html"><LINK
REL="PREVIOUS"
TITLE="png2wbmp"
HREF="function.png2wbmp.html"><LINK
REL="NEXT"
TITLE="imagick_begindraw"
HREF="function.imagick-begindraw.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=UTF-8"></HEAD
><BODY
CLASS="reference"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Manual do PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.png2wbmp.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.imagick-begindraw.html"
ACCESSKEY="N"
>Próxima</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="reference"
><A
NAME="ref.imagick"
></A
><DIV
CLASS="TITLEPAGE"
><H1
CLASS="title"
>LXVI. Image magick Functions</H1
><DIV
CLASS="PARTINTRO"
><A
NAME="AEN86659"
></A
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="imagick.intro"
>Introdução</A
></H1
><P
>&#13;    Image magick extension lets you create and manipulate images. Its function
    is similar to <A
HREF="ref.image.html"
>Image extension</A
> but
    provides more powerful and faster functions.
   </P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="imagick.requirements"
>Dependências</A
></H1
><P
>&#13;    To use this extension, either "ImageMagick" or "GraphicsMagick" library is
    required.
   </P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="imagick.installation"
>Instalação</A
></H1
><P
>&#13;  <SPAN
CLASS="emphasis"
><I
CLASS="emphasis"
>Windows</I
></SPAN
> binaries may be found at
  <A
HREF="http://snaps.php.net/"
TARGET="_top"
>http://snaps.php.net/</A
>.
  To install, download php_imagick.dll to the folder specified
  by your php.ini file's <TT
CLASS="literal"
>extension_dir</TT
> directive.
  Enable it by adding <TT
CLASS="literal"
>extension=php_imagick.dll</TT
>
  to your php.ini and restarting your web server.
 </P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><PRE
CLASS="screen"
>extension_dir=c:/php5/exts/
extension=php_imagick.dll</PRE
></TD
></TR
></TABLE
><P
>&#13;  <SPAN
CLASS="emphasis"
><I
CLASS="emphasis"
>Linux, BSD, and other *nix variants</I
></SPAN
>
  can be compiled using the following steps:
 </P
><P
></P
><UL
><LI
><P
>&#13;    Either:
   </P
><P
>&#13;    <P
></P
><UL
><LI
><P
>&#13;       Run the pear installer for PECL/imagick: <TT
CLASS="literal"
>pecl install imagick</TT
>
      </P
></LI
><LI
><P
>&#13;       Copy <TT
CLASS="literal"
>imagick.so</TT
> from the directory indicated by the
       build process to the location specified in your php.ini file under
       <TT
CLASS="literal"
>extension_dir</TT
>.
      </P
></LI
><LI
><P
>&#13;       Add <TT
CLASS="literal"
>extension=imagick.so</TT
> to your php.ini
      </P
></LI
></UL
>
   </P
><P
>&#13;    Or:
   </P
><P
>&#13;    <P
></P
><UL
><LI
><P
>&#13;       Set the path to your php.ini via:
      </P
><P
>&#13;       <TT
CLASS="literal"
>pecl config-set php_ini /path/to/php.ini</TT
>
      </P
></LI
><LI
><P
>&#13;       Run the pear installer for PECL/imagick: <TT
CLASS="literal"
>pecl install imagick</TT
>
      </P
></LI
></UL
>
   </P
></LI
><LI
><P
>&#13;    Restart your web server to reload your php.ini settings.
   </P
></LI
></UL
><DIV
CLASS="note"
><BLOCKQUOTE
CLASS="note"
><P
><B
>Development Versions: </B
>
   There are currently no <TT
CLASS="literal"
>stable</TT
> versions of PECL/imagick,
   to force installation of the <TT
CLASS="literal"
>beta</TT
> version of PECL/imagick
   execute: <TT
CLASS="literal"
>pecl install imagick-</TT
><SPAN
CLASS="emphasis"
><I
CLASS="emphasis"
>beta</I
></SPAN
>
  </P
></BLOCKQUOTE
></DIV
><DIV
CLASS="tip"
><BLOCKQUOTE
CLASS="tip"
><P
><B
>Compiling PECL/imagick without using the PEAR command: </B
>
   Rather than using <TT
CLASS="literal"
>pecl install imagick</TT
> to automatically
   download and install PECL/imagick, you may download the tarball from
   <A
HREF="http://pecl.php.net/package/imagick"
TARGET="_top"
>PECL</A
>.
   From the root of the unpacked tarball, run:
   <TT
CLASS="literal"
>phpize &#38;&#38; ./configure --enable-imagick &#38;&#38; make</TT
>
   to generate <TT
CLASS="literal"
>imagick.so</TT
>.
   Once built, continue the installation from step 4 above.
  </P
></BLOCKQUOTE
></DIV
><P
>&#13;  Informações para a instalação desta extensão PECL
 podem ser encontradas no manual no capitulo entitulado <A
HREF="install.pecl.html"
>Instalação
 de extensões PECL</A
>. Informações adicionais como novas versões,
 downloads, arquivos fontes, manutenções, e um Changelog, podem ser
 obtidos aqui: 
  <A
HREF="http://pecl.php.net/package/imagick"
TARGET="_top"
>http://pecl.php.net/package/imagick</A
>.
 </P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="imagick.resources"
>Tipos Resource</A
></H1
><P
>&#13;    This extension uses the "imagemagick handle" resource.
   </P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="imagick.constants"
>Constantes pré-definidas</A
></H1
><P
>&#13;As contantes abaixo são definidas por esta extensão e somente
 estarão disponíveis quando a extensão foi compilada com o PHP
 ou carregada dinamicamente durante a execução.
</P
><P
></P
><DIV
CLASS="variablelist"
><DL
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_UNDEFINED</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_POINT</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_BOX</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_TRIANGLE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_HERMITE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_HANNING</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_HAMMING</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_BLACKMAN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_GAUSSIAN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_QUADRATIC</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_CUBIC</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_CATROM</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_MITCHELL</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_LANCZOS</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_BESSEL</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_SINC</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FILTER_UNKNOWN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FONTSTYLE_NORMAL</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FONTSTYLE_ITALIC</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FONTSTYLE_OBLIQUE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_FONTSTYLE_ANY</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_RAISE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_LOWER</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_UNDEFINED</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_OVER</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_IN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_OUT</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_ATOP</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_XOR</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_PLUS</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_MINUS</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_ADD</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_SUBTRACT</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_DIFFERENCE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_MULTIPLY</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_BUMPMAP</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_COPY</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_COPYRED</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_COPYGREEN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_COPYBLUE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_COPYOPACITY</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_CLEAR</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_DISSOLVE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_DISPLACE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_MODULATE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_THRESHOLD</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_NONE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_DARKEN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_LIGHTEN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_HUE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_SATURATE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_COLORIZE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_LUMINIZE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_SCREEN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPOSITE_OP_OVERLAY</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_PROFILE_OWN</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_PROFILE_COPY</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_UNDEFINED</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_BILEVEL</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_GRAYSCALE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_GRAYSCALEMATTE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_PALETTE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_PALETTEMATTE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_TRUECOLOR</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_TRUECOLORMATTE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_COLORSEPARATION</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_COLORSEPARATIONMATTE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_TYPE_OPTIMIZE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_UNDEFINED</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_RGB</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_GRAY</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_TRANSPARENT</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_OHTA</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_XYZ</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_YCBCR</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_YCC</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_YIQ</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_YPBPR</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_YUV</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_CMYK</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COLORSPACE_SRGB</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_UNDEFINED</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_NONE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_BZIP</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_FAX</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_GROUP4</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_JPEG</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_LOSSLESSJPEG</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_LZW</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_RLE</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
><DT
><TT
CLASS="constant"
><B
>IMAGICK_COMPRESSION_ZIP</B
></TT
>
     (<A
HREF="language.types.integer.html"
><B
CLASS="type"
>integer</B
></A
>)</DT
><DD
><P
>&#13;
    </P
></DD
></DL
></DIV
></DIV
></DIV
><DIV
CLASS="TOC"
><DL
><DT
><B
>Índice</B
></DT
><DT
><A
HREF="function.imagick-begindraw.html"
>imagick_begindraw</A
>&nbsp;--&nbsp;Begin draw</DT
><DT
><A
HREF="function.imagick-blob2image.html"
>imagick_blob2image</A
>&nbsp;--&nbsp;Read image from BLOB</DT
><DT
><A
HREF="function.imagick-blur.html"
>imagick_blur</A
>&nbsp;--&nbsp;Blur image</DT
><DT
><A
HREF="function.imagick-border.html"
>imagick_border</A
>&nbsp;--&nbsp;Surrounds the image with a border</DT
><DT
><A
HREF="function.imagick-charcoal.html"
>imagick_charcoal</A
>&nbsp;--&nbsp;Highlight edges</DT
><DT
><A
HREF="function.imagick-chop.html"
>imagick_chop</A
>&nbsp;--&nbsp;Remove a region of an image and collapse the image to occupy the removed portion</DT
><DT
><A
HREF="function.imagick-clonehandle.html"
>imagick_clonehandle</A
>&nbsp;--&nbsp;Clone image</DT
><DT
><A
HREF="function.imagick-composite.html"
>imagick_composite</A
>&nbsp;--&nbsp;Composite the second image onto the first at the specified offsets</DT
><DT
><A
HREF="function.imagick-contrast.html"
>imagick_contrast</A
>&nbsp;--&nbsp;Enhance the intensity differences between the lighter and darker elements of the image</DT
><DT
><A
HREF="function.imagick-convert.html"
>imagick_convert</A
>&nbsp;--&nbsp;Convert image</DT
><DT
><A
HREF="function.imagick-crop.html"
>imagick_crop</A
>&nbsp;--&nbsp;Extract a region of the image</DT
><DT
><A
HREF="function.imagick-despeckle.html"
>imagick_despeckle</A
>&nbsp;--&nbsp;Reduce the speckle noise</DT
><DT
><A
HREF="function.imagick-destroyhandle.html"
>imagick_destroyhandle</A
>&nbsp;--&nbsp;Free image from memory</DT
><DT
><A
HREF="function.imagick-drawannotation.html"
>imagick_drawannotation</A
>&nbsp;--&nbsp;Write text</DT
><DT
><A
HREF="function.imagick-drawarc.html"
>imagick_drawarc</A
>&nbsp;--&nbsp;Draw arc</DT
><DT
><A
HREF="function.imagick-drawcircle.html"
>imagick_drawcircle</A
>&nbsp;--&nbsp;Draw circle</DT
><DT
><A
HREF="function.imagick-drawellipse.html"
>imagick_drawellipse</A
>&nbsp;--&nbsp;Draw ellipse</DT
><DT
><A
HREF="function.imagick-drawline.html"
>imagick_drawline</A
>&nbsp;--&nbsp;Draw line</DT
><DT
><A
HREF="function.imagick-drawpoint.html"
>imagick_drawpoint</A
>&nbsp;--&nbsp;Draw point</DT
><DT
><A
HREF="function.imagick-drawrectangle.html"
>imagick_drawrectangle</A
>&nbsp;--&nbsp;Draw rectangle</DT
><DT
><A
HREF="function.imagick-edge.html"
>imagick_edge</A
>&nbsp;--&nbsp;Find edges</DT
><DT
><A
HREF="function.imagick-emboss.html"
>imagick_emboss</A
>&nbsp;--&nbsp;Return a grayscale image with a three-dimensional effect</DT
><DT
><A
HREF="function.imagick-enhance.html"
>imagick_enhance</A
>&nbsp;--&nbsp;Apply a digital filter that improves the quality of a noisy image</DT
><DT
><A
HREF="function.imagick-equalize.html"
>imagick_equalize</A
>&nbsp;--&nbsp;Apply a histogram equalization to the image</DT
><DT
><A
HREF="function.imagick-error.html"
>imagick_error</A
>&nbsp;--&nbsp;Check whether there is an error</DT
><DT
><A
HREF="function.imagick-faileddescription.html"
>imagick_faileddescription</A
>&nbsp;--&nbsp;Get description of failure</DT
><DT
><A
HREF="function.imagick-failedreason.html"
>imagick_failedreason</A
>&nbsp;--&nbsp;Get reason of failure</DT
><DT
><A
HREF="function.imagick-first.html"
>imagick_first</A
>&nbsp;--&nbsp;Set the internal pointer of an image list to its first element</DT
><DT
><A
HREF="function.imagick-flatten.html"
>imagick_flatten</A
>&nbsp;--&nbsp;Merge a sequence of images</DT
><DT
><A
HREF="function.imagick-flip.html"
>imagick_flip</A
>&nbsp;--&nbsp;Create a vertical mirror image by reflecting the pixels around the central x-axis</DT
><DT
><A
HREF="function.imagick-flop.html"
>imagick_flop</A
>&nbsp;--&nbsp;Create a horizontal mirror image by reflecting the pixels around the central y-axis</DT
><DT
><A
HREF="function.imagick-frame.html"
>imagick_frame</A
>&nbsp;--&nbsp;Add a simulated three-dimensional border around the image</DT
><DT
><A
HREF="function.imagick-free.html"
>imagick_free</A
>&nbsp;--&nbsp;Sinônimo de <A
HREF="function.imagick-destroyhandle.html"
><B
CLASS="function"
>imagick_destroyhandle()</B
></A
></DT
><DT
><A
HREF="function.imagick-gamma.html"
>imagick_gamma</A
>&nbsp;--&nbsp;Gamma-correct a particular image channel</DT
><DT
><A
HREF="function.imagick-gaussianblur.html"
>imagick_gaussianblur</A
>&nbsp;--&nbsp;Blur image</DT
><DT
><A
HREF="function.imagick-getcanvas.html"
>imagick_getcanvas</A
>&nbsp;--&nbsp;Get canvas</DT
><DT
><A
HREF="function.imagick-getcolorspace.html"
>imagick_getcolorspace</A
>&nbsp;--&nbsp;Get color space</DT
><DT
><A
HREF="function.imagick-getdpix.html"
>imagick_getdpix</A
>&nbsp;--&nbsp;Get DPI in X axis</DT
><DT
><A
HREF="function.imagick-getdpiy.html"
>imagick_getdpiy</A
>&nbsp;--&nbsp;Get DPI in Y axis</DT
><DT
><A
HREF="function.imagick-getheight.html"
>imagick_getheight</A
>&nbsp;--&nbsp;Get height</DT
><DT
><A
HREF="function.imagick-getimagedepth.html"
>imagick_getimagedepth</A
>&nbsp;--&nbsp;Get color depth</DT
><DT
><A
HREF="function.imagick-getimagefromlist.html"
>imagick_getimagefromlist</A
>&nbsp;--&nbsp;Return copy of an image from the list</DT
><DT
><A
HREF="function.imagick-getimagetype.html"
>imagick_getimagetype</A
>&nbsp;--&nbsp;Get image type</DT
><DT
><A
HREF="function.imagick-getlistindex.html"
>imagick_getlistindex</A
>&nbsp;--&nbsp;Get position in the list of the specified image</DT
><DT
><A
HREF="function.imagick-getlistsize.html"
>imagick_getlistsize</A
>&nbsp;--&nbsp;Get list size</DT
><DT
><A
HREF="function.imagick-getmagick.html"
>imagick_getmagick</A
>&nbsp;--&nbsp;Get Magick string</DT
><DT
><A
HREF="function.imagick-getmimetype.html"
>imagick_getmimetype</A
>&nbsp;--&nbsp;Get MIME type</DT
><DT
><A
HREF="function.imagick-getnumbercolors.html"
>imagick_getnumbercolors</A
>&nbsp;--&nbsp;Get number of colors</DT
><DT
><A
HREF="function.imagick-getwidth.html"
>imagick_getwidth</A
>&nbsp;--&nbsp;Get width</DT
><DT
><A
HREF="function.imagick-goto.html"
>imagick_goto</A
>&nbsp;--&nbsp;Go to specified image in a list</DT
><DT
><A
HREF="function.imagick-image2blob.html"
>imagick_image2blob</A
>&nbsp;--&nbsp;Return image as BLOB</DT
><DT
><A
HREF="function.imagick-implode.html"
>imagick_implode</A
>&nbsp;--&nbsp;Implode image pixels</DT
><DT
><A
HREF="function.imagick-iserror.html"
>imagick_iserror</A
>&nbsp;--&nbsp;Check whether there is an error with image</DT
><DT
><A
HREF="function.imagick-isgrayimage.html"
>imagick_isgrayimage</A
>&nbsp;--&nbsp;Check whether image is gray</DT
><DT
><A
HREF="function.imagick-isimagesequal.html"
>imagick_isimagesequal</A
>&nbsp;--&nbsp;Compare two images</DT
><DT
><A
HREF="function.imagick-ismonochromeimage.html"
>imagick_ismonochromeimage</A
>&nbsp;--&nbsp;Check whether image is monochrome</DT
><DT
><A
HREF="function.imagick-isopaqueimage.html"
>imagick_isopaqueimage</A
>&nbsp;--&nbsp;Check whether image is opaque</DT
><DT
><A
HREF="function.imagick-ispaletteimage.html"
>imagick_ispaletteimage</A
>&nbsp;--&nbsp;Check whether image is palette</DT
><DT
><A
HREF="function.imagick-level.html"
>imagick_level</A
>&nbsp;--&nbsp;Adjust levels of a particular image channel by scaling the colors falling between specified white and black points to the full available quantum range</DT
><DT
><A
HREF="function.imagick-magnify.html"
>imagick_magnify</A
>&nbsp;--&nbsp;Double-size the image using bilinear interpolation</DT
><DT
><A
HREF="function.imagick-medianfilter.html"
>imagick_medianfilter</A
>&nbsp;--&nbsp;Replace each pixel by the median in a set of neighboring pixels</DT
><DT
><A
HREF="function.imagick-minify.html"
>imagick_minify</A
>&nbsp;--&nbsp;Half-size the image using the weighted average of a 4x4 cell</DT
><DT
><A
HREF="function.imagick-modulate.html"
>imagick_modulate</A
>&nbsp;--&nbsp;Control brightness, saturation and hue</DT
><DT
><A
HREF="function.imagick-mosaic.html"
>imagick_mosaic</A
>&nbsp;--&nbsp;Inlay a number of images to form a single coherent picture</DT
><DT
><A
HREF="function.imagick-motionblur.html"
>imagick_motionblur</A
>&nbsp;--&nbsp;Simulate motion blur</DT
><DT
><A
HREF="function.imagick-negate.html"
>imagick_negate</A
>&nbsp;--&nbsp;Negate the colors</DT
><DT
><A
HREF="function.imagick-newimagelist.html"
>imagick_newimagelist</A
>&nbsp;--&nbsp;Create new image list</DT
><DT
><A
HREF="function.imagick-next.html"
>imagick_next</A
>&nbsp;--&nbsp;Advance the internal pointer of an image list</DT
><DT
><A
HREF="function.imagick-normalize.html"
>imagick_normalize</A
>&nbsp;--&nbsp;Enhance the contrast of a color image by mapping the darkest 2 percent of all pixel to black and the brightest 1 percent to white</DT
><DT
><A
HREF="function.imagick-oilpaint.html"
>imagick_oilpaint</A
>&nbsp;--&nbsp;Simulate oil painting</DT
><DT
><A
HREF="function.imagick-ordereddither.html"
>imagick_ordereddither</A
>&nbsp;--&nbsp;Use the ordered dithering technique of reducing color images to monochrome</DT
><DT
><A
HREF="function.imagick-poplist.html"
>imagick_poplist</A
>&nbsp;--&nbsp;Remove the last image in the list</DT
><DT
><A
HREF="function.imagick-prev.html"
>imagick_prev</A
>&nbsp;--&nbsp;Rewind the internal pointer of an image list</DT
><DT
><A
HREF="function.imagick-profile.html"
>imagick_profile</A
>&nbsp;--&nbsp;Add or remove a ICC, IPTC, or generic profile from an image</DT
><DT
><A
HREF="function.imagick-pushlist.html"
>imagick_pushlist</A
>&nbsp;--&nbsp;Add an image to the end of the list</DT
><DT
><A
HREF="function.imagick-raise.html"
>imagick_raise</A
>&nbsp;--&nbsp;Create a simulated three-dimensional button-like effect</DT
><DT
><A
HREF="function.imagick-read.html"
>imagick_read</A
>&nbsp;--&nbsp;Sinônimo de <A
HREF="function.imagick-readimage.html"
><B
CLASS="function"
>imagick_readimage()</B
></A
></DT
><DT
><A
HREF="function.imagick-readimage.html"
>imagick_readimage</A
>&nbsp;--&nbsp;Read image</DT
><DT
><A
HREF="function.imagick-reducenoise.html"
>imagick_reducenoise</A
>&nbsp;--&nbsp;Smooth the contours of an image while still preserving edge information</DT
><DT
><A
HREF="function.imagick-resize.html"
>imagick_resize</A
>&nbsp;--&nbsp;Resize image</DT
><DT
><A
HREF="function.imagick-roll.html"
>imagick_roll</A
>&nbsp;--&nbsp;Offset an image as defined by x and y</DT
><DT
><A
HREF="function.imagick-rotate.html"
>imagick_rotate</A
>&nbsp;--&nbsp;Rotate image</DT
><DT
><A
HREF="function.imagick-sample.html"
>imagick_sample</A
>&nbsp;--&nbsp;Scale image using pixel sampling</DT
><DT
><A
HREF="function.imagick-scale.html"
>imagick_scale</A
>&nbsp;--&nbsp;Scale image using pnmscale() of PBMPLUS</DT
><DT
><A
HREF="function.imagick-set-image-comment.html"
>imagick_set_image_comment</A
>&nbsp;--&nbsp;Set "comment" attribute of image</DT
><DT
><A
HREF="function.imagick-set-image-quality.html"
>imagick_set_image_quality</A
>&nbsp;--&nbsp;Set image quality</DT
><DT
><A
HREF="function.imagick-setcompressionquality.html"
>imagick_setcompressionquality</A
>&nbsp;--&nbsp;Set compression quality</DT
><DT
><A
HREF="function.imagick-setcompressiontype.html"
>imagick_setcompressiontype</A
>&nbsp;--&nbsp;Set compression type</DT
><DT
><A
HREF="function.imagick-setdpi.html"
>imagick_setdpi</A
>&nbsp;--&nbsp;Set DPI</DT
><DT
><A
HREF="function.imagick-setfillcolor.html"
>imagick_setfillcolor</A
>&nbsp;--&nbsp;Set fill color</DT
><DT
><A
HREF="function.imagick-setfillopacity.html"
>imagick_setfillopacity</A
>&nbsp;--&nbsp;Set fill opacity</DT
><DT
><A
HREF="function.imagick-setfontface.html"
>imagick_setfontface</A
>&nbsp;--&nbsp;Set font face</DT
><DT
><A
HREF="function.imagick-setfontsize.html"
>imagick_setfontsize</A
>&nbsp;--&nbsp;Set font size</DT
><DT
><A
HREF="function.imagick-setfontstyle.html"
>imagick_setfontstyle</A
>&nbsp;--&nbsp;Set font style</DT
><DT
><A
HREF="function.imagick-shade.html"
>imagick_shade</A
>&nbsp;--&nbsp;Shine a distant light on an image to create a three-dimensional effect</DT
><DT
><A
HREF="function.imagick-sharpen.html"
>imagick_sharpen</A
>&nbsp;--&nbsp;Sharpen image</DT
><DT
><A
HREF="function.imagick-shear.html"
>imagick_shear</A
>&nbsp;--&nbsp;Slide one edge of an image along the X or Y axis, creating a parallelogram</DT
><DT
><A
HREF="function.imagick-solarize.html"
>imagick_solarize</A
>&nbsp;--&nbsp;Solarize image</DT
><DT
><A
HREF="function.imagick-spread.html"
>imagick_spread</A
>&nbsp;--&nbsp;Randomly displace each pixel in a block</DT
><DT
><A
HREF="function.imagick-swirl.html"
>imagick_swirl</A
>&nbsp;--&nbsp;Swirl pixels around the center of image</DT
><DT
><A
HREF="function.imagick-threshold.html"
>imagick_threshold</A
>&nbsp;--&nbsp;Change the value of individual pixels based on the intensity of each pixel compared to threshold</DT
><DT
><A
HREF="function.imagick-transformrgb.html"
>imagick_transformrgb</A
>&nbsp;--&nbsp;Convert the image from RGB to an alternate colorspace</DT
><DT
><A
HREF="function.imagick-transparent.html"
>imagick_transparent</A
>&nbsp;--&nbsp;Make image transparent</DT
><DT
><A
HREF="function.imagick-unsharpmask.html"
>imagick_unsharpmask</A
>&nbsp;--&nbsp;Sharpen image</DT
><DT
><A
HREF="function.imagick-wave.html"
>imagick_wave</A
>&nbsp;--&nbsp;Creates a ripple effect in the image by shifting the pixels vertically along a sine wave</DT
><DT
><A
HREF="function.imagick-writeimage.html"
>imagick_writeimage</A
>&nbsp;--&nbsp;Write image</DT
><DT
><A
HREF="function.imagick-writeimages.html"
>imagick_writeimages</A
>&nbsp;--&nbsp;Write images</DT
><DT
><A
HREF="function.imagick-zoom.html"
>imagick_zoom</A
>&nbsp;--&nbsp;Zoom image using selected filter</DT
></DL
></DIV
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.png2wbmp.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Principal</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.imagick-begindraw.html"
ACCESSKEY="N"
>Próxima</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>png2wbmp</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="funcref.html"
ACCESSKEY="U"
>Acima</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>imagick_begindraw</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>