<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.imagickpixel.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'imagickpixel.sethsl.php',
    1 => 'ImagickPixel::setHSL',
    2 => 'Sets the normalized HSL color',
  ),
  'up' => 
  array (
    0 => 'class.imagickpixel.php',
    1 => 'ImagickPixel',
  ),
  'prev' => 
  array (
    0 => 'imagickpixel.setcolorvaluequantum.php',
    1 => 'ImagickPixel::setColorValueQuantum',
  ),
  'next' => 
  array (
    0 => 'imagickpixel.setindex.php',
    1 => 'ImagickPixel::setIndex',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imagick/imagickpixel/sethsl.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="imagickpixel.sethsl" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ImagickPixel::setHSL</h1>
  <p class="verinfo">(PECL imagick 2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">ImagickPixel::setHSL</span> &mdash; <span class="dc-title">Sets the normalized HSL color</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-imagickpixel.sethsl-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>ImagickPixel::setHSL</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$hue</code></span>, <span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$saturation</code></span>, <span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$luminosity</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   Sets the color described by the ImagickPixel object using normalized
   values for hue, saturation and luminosity.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-imagickpixel.sethsl-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">hue</code></dt>
     <dd>
      <p class="para">
       The normalized value for hue, described as a fractional arc
       (between 0 and 1) of the hue circle, where the zero value is
       red.
      </p>
     </dd>
    
    
     <dt><code class="parameter">saturation</code></dt>
     <dd>
      <p class="para">
       The normalized value for saturation, with 1 as full saturation.
      </p>
     </dd>
    
    
     <dt><code class="parameter">luminosity</code></dt>
     <dd>
      <p class="para">
       The normalized value for luminosity, on a scale from black at
       0 to white at 1, with the full HS value at 0.5 luminosity.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-imagickpixel.sethsl-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> on success.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-imagickpixel.sethsl-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 Use <span class="function"><strong>ImagickPixel::setHSL()</strong></span> to modify a color</strong></p>
    <div class="example-contents">
        <div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">//Create an almost pure red color<br /></span><span style="color: #0000BB">$color </span><span style="color: #007700">= new </span><span style="color: #0000BB">ImagickPixel</span><span style="color: #007700">(</span><span style="color: #DD0000">'rgb(90%, 10%, 10%)'</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">//Get it's HSL values<br /></span><span style="color: #0000BB">$colorInfo </span><span style="color: #007700">= </span><span style="color: #0000BB">$color</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getHSL</span><span style="color: #007700">();<br /><br /></span><span style="color: #FF8000">//Rotate the hue by 180 degrees<br /></span><span style="color: #0000BB">$newHue </span><span style="color: #007700">= </span><span style="color: #0000BB">$colorInfo</span><span style="color: #007700">[</span><span style="color: #DD0000">'hue'</span><span style="color: #007700">] + </span><span style="color: #0000BB">0.5</span><span style="color: #007700">;<br />if (</span><span style="color: #0000BB">$newHue </span><span style="color: #007700">&gt; </span><span style="color: #0000BB">1</span><span style="color: #007700">) {<br />    </span><span style="color: #0000BB">$newHue </span><span style="color: #007700">= </span><span style="color: #0000BB">$newHue </span><span style="color: #007700">- </span><span style="color: #0000BB">1</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #FF8000">//Set the ImagickPixel to the new color<br /></span><span style="color: #0000BB">$colorInfo </span><span style="color: #007700">= </span><span style="color: #0000BB">$color</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setHSL</span><span style="color: #007700">(</span><span style="color: #0000BB">$newHue</span><span style="color: #007700">, </span><span style="color: #0000BB">$colorInfo</span><span style="color: #007700">[</span><span style="color: #DD0000">'saturation'</span><span style="color: #007700">], </span><span style="color: #0000BB">$colorInfo</span><span style="color: #007700">[</span><span style="color: #DD0000">'luminosity'</span><span style="color: #007700">]);<br /><br /></span><span style="color: #FF8000">//Check that the new color is blue/green<br /></span><span style="color: #0000BB">$colorInfo </span><span style="color: #007700">= </span><span style="color: #0000BB">$color</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getcolor</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$colorInfo</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>The above example will output:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [r] =&gt; 26
    [g] =&gt; 230
    [b] =&gt; 230
    [a] =&gt; 255
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-imagickpixel.sethsl-notes">
  <h3 class="title">Notes</h3>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
   <p class="para">
    Available with ImageMagick library version 6.2.9 and higher.
   </p>
  </p></blockquote>
 </div>


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