<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.gmagick.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'gmagick.levelimage.php',
    1 => 'Gmagick::levelimage',
    2 => 'Adjusts the levels of an image',
  ),
  'up' => 
  array (
    0 => 'class.gmagick.php',
    1 => 'Gmagick',
  ),
  'prev' => 
  array (
    0 => 'gmagick.labelimage.php',
    1 => 'Gmagick::labelimage',
  ),
  'next' => 
  array (
    0 => 'gmagick.magnifyimage.php',
    1 => 'Gmagick::magnifyimage',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/gmagick/gmagick/levelimage.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="gmagick.levelimage" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Gmagick::levelimage</h1>
  <p class="verinfo">(PECL gmagick &gt;= Unknown)</p><p class="refpurpose"><span class="refname">Gmagick::levelimage</span> &mdash; <span class="dc-title">Adjusts the levels of an image</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-gmagick.levelimage-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Gmagick::levelimage</strong></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$blackPoint</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$gamma</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$whitePoint</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<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"> = Gmagick::CHANNEL_DEFAULT</span></span><br>): <span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span></div>

  <p class="simpara">
   Adjusts the levels of an image by scaling the colors falling between specified white and black
 points to the full available quantum range. The parameters provided represent the black, mid, and
  white points. The black point specifies the darkest color in the image. Colors darker than the black
 point are set to zero. Mid point specifies a gamma correction to apply to the image. White point
 specifies the lightest color in the image. Colors brighter than the white point are set to the
 maximum quantum value.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-gmagick.levelimage-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <dl>
   
    <dt><code class="parameter">blackPoint</code></dt>
    <dd>
     <span class="simpara">
      The image black point.
     </span>
    </dd>
   
   
    <dt><code class="parameter">gamma</code></dt>
    <dd>
     <span class="simpara">
      The gamma value.
     </span>
    </dd>
   
   
    <dt><code class="parameter">whitePoint</code></dt>
    <dd>
     <span class="simpara">
      The image white point.
     </span>
    </dd>
   
   
    <dt><code class="parameter">channel</code></dt>
    <dd>
     <span class="simpara">
      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="gmagick.constants.php#gmagick.constants.channel" class="link">channel constants</a>.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-gmagick.levelimage-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="simpara">
   <span class="classname"><a href="class.gmagick.php" class="classname">Gmagick</a></span> object with image leveled.
  </p>
 </div>

 <div class="refsect1 errors" id="refsect1-gmagick.levelimage-errors">
  <h3 class="title">Hatalar/İstisnalar</h3>
  <p class="simpara">
   Hata durumunda bir
<span class="classname"><strong class="classname">GmagickException</strong></span>
istisnası oluşur.
  </p>
 </div>

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