<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.imagick.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'imagick.combineimages.php',
    1 => 'Imagick::combineImages',
    2 => 'Combines one or more images into a single image',
  ),
  'up' => 
  array (
    0 => 'class.imagick.php',
    1 => 'Imagick',
  ),
  'prev' => 
  array (
    0 => 'imagick.colormatriximage.php',
    1 => 'Imagick::colorMatrixImage',
  ),
  'next' => 
  array (
    0 => 'imagick.commentimage.php',
    1 => 'Imagick::commentImage',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imagick/imagick/combineimages.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="imagick.combineimages" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Imagick::combineImages</h1>
  <p class="verinfo">(PECL imagick 2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">Imagick::combineImages</span> &mdash; <span class="dc-title">Combines one or more images into a single image</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-imagick.combineimages-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Imagick::combineImages</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$channelType</code></span>): <span class="type"><a href="class.imagick.php" class="type Imagick">Imagick</a></span></div>

  <p class="para rdfs-comment">
   Combines one or more images into a single image. The grayscale
   value of the pixels of each image in the sequence is assigned
   in order to the specified channels of the combined image. The
   typical ordering would be image 1 =&gt; Red, 2 =&gt; Green,
   3 =&gt; Blue, etc.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-imagick.combineimages-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">channelType</code></dt>
     <dd>
      <p class="para">
       Provide any channel constant that is valid for your channel mode. To
       apply to more than one channel, combine channeltype constants using
       bitwise operators. Refer to this
       list of  <a href="imagick.constants.php#imagick.constants.channel" class="link">channel constants</a>.
      </p>
     </dd>
    
   </dl>
  </p>

 </div>

 <div class="refsect1 returnvalues" id="refsect1-imagick.combineimages-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Restituisce <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> in caso di successo.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-imagick.combineimages-errors">
  <h3 class="title">Errori/Eccezioni</h3>
  <p class="para">
   Lancia una ImagickException in caso di errore.
  </p>
 </div>


</div><?php manual_footer($setup); ?>