<?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 => 'de',
  ),
  'this' => 
  array (
    0 => 'imagick.orderedposterizeimage.php',
    1 => 'Imagick::orderedPosterizeImage',
    2 => 'Performs an ordered dither',
  ),
  'up' => 
  array (
    0 => 'class.imagick.php',
    1 => 'Imagick',
  ),
  'prev' => 
  array (
    0 => 'imagick.optimizeimagelayers.php',
    1 => 'Imagick::optimizeImageLayers',
  ),
  'next' => 
  array (
    0 => 'imagick.paintfloodfillimage.php',
    1 => 'Imagick::paintFloodfillImage',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imagick/imagick/orderedposterizeimage.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="imagick.orderedposterizeimage" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Imagick::orderedPosterizeImage</h1>
  <p class="verinfo">(PECL imagick 2 &gt;= 2.2.2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">Imagick::orderedPosterizeImage</span> &mdash; <span class="dc-title">Performs an ordered dither</span></p>

 </div>

 <div id="imagick.orderedposterizeimage-refsynopsisdiv">
   <div class="warning"><strong class="warning">Warnung</strong><p class="simpara">Diese Funktion ist von Imagick 3.4.4 an <em>MISSBILLIGT</em>. Von der weiteren Verwendung wird dringend abgeraten.</p></div>
 </div>

 <div class="refsect1 description" id="refsect1-imagick.orderedposterizeimage-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Imagick::orderedPosterizeImage</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$threshold_map</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$channel</code><span class="initializer"> = Imagick::CHANNEL_DEFAULT</span></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>


  <p class="para rdfs-comment">
    Performs an ordered dither based on a number of pre-defined dithering threshold maps, 
    but over multiple intensity levels, which can be different for different channels, 
    according to the input arguments. Diese Funktion ist verfügbar, wenn Imagick gegen die ImageMagick-Version 6.3.1 oder höher kompiliert wurde.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-imagick.orderedposterizeimage-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">threshold_map</code></dt>
     <dd>
      <p class="para">
       A string containing the name of the threshold dither map to use
      </p>
     </dd>
    
    
     <dt><code class="parameter">channel</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.orderedposterizeimage-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="para">
   Liefert <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> bei Erfolg.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-imagick.orderedposterizeimage-errors">
  <h3 class="title">Fehler/Exceptions</h3>
  <p class="para">
   Wirft ImagickException bei Fehlern.
  </p>
 </div>




 <div class="refsect1 examples" id="refsect1-imagick.orderedposterizeimage-examples">
  <h3 class="title">Beispiele</h3>
  <p class="para">
    <div class="example" id="example-1">
      <p><strong>Beispiel #1  <span class="function"><strong>Imagick::orderedPosterizeImage()</strong></span></strong></p>
      <div class="example-contents">
      <div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">function </span><span style="color: #0000BB">orderedPosterizeImage</span><span style="color: #007700">(</span><span style="color: #0000BB">$imagePath</span><span style="color: #007700">, </span><span style="color: #0000BB">$orderedPosterizeType</span><span style="color: #007700">) {<br />    </span><span style="color: #0000BB">$imagick </span><span style="color: #007700">= new </span><span style="color: #0000BB">\Imagick</span><span style="color: #007700">(</span><span style="color: #0000BB">realpath</span><span style="color: #007700">(</span><span style="color: #0000BB">$imagePath</span><span style="color: #007700">));<br />    <br />  <br />    </span><span style="color: #0000BB">$imagick</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">orderedPosterizeImage</span><span style="color: #007700">(</span><span style="color: #0000BB">$orderedPosterizeType</span><span style="color: #007700">);<br />    </span><span style="color: #0000BB">$imagick</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setImageFormat</span><span style="color: #007700">(</span><span style="color: #DD0000">'png'</span><span style="color: #007700">);<br />    <br />    </span><span style="color: #0000BB">header</span><span style="color: #007700">(</span><span style="color: #DD0000">"Content-Type: image/png"</span><span style="color: #007700">);<br />    echo </span><span style="color: #0000BB">$imagick</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getImageBlob</span><span style="color: #007700">();<br />}<br /><br /></span><span style="color: #FF8000">//orderedPosterizeImage($imagePath, 'o4x4,3,3');<br />//orderedPosterizeImage($imagePath, 'o8x8,6,6');<br /></span><span style="color: #0000BB">orderedPosterizeImage</span><span style="color: #007700">(</span><span style="color: #0000BB">$imagePath</span><span style="color: #007700">, </span><span style="color: #DD0000">'h8x8a'</span><span style="color: #007700">);<br /><br /><br /><br /><br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
      </div>

    </div>
  </p>
 </div>


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