<?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.profileimage.php',
    1 => 'Imagick::profileImage',
    2 => 'Adds or removes a profile from an image',
  ),
  'up' => 
  array (
    0 => 'class.imagick.php',
    1 => 'Imagick',
  ),
  'prev' => 
  array (
    0 => 'imagick.previousimage.php',
    1 => 'Imagick::previousImage',
  ),
  'next' => 
  array (
    0 => 'imagick.quantizeimage.php',
    1 => 'Imagick::quantizeImage',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imagick/imagick/profileimage.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="imagick.profileimage" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Imagick::profileImage</h1>
  <p class="verinfo">(PECL imagick 2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">Imagick::profileImage</span> &mdash; <span class="dc-title">Adds or removes a profile from an image</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-imagick.profileimage-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Imagick::profileImage</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$name</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$profile</code><span class="initializer"> = ?</span></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="simpara">
   Adds or removes a <abbr>ICC</abbr>, <abbr>IPTC</abbr>,
   or generic profile from an image.
   If the <code class="parameter">profile</code> is <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>,
   it is removed from the image rather than added.
  </p>
  <p class="simpara">
   To remove every single profile from the image use <code class="literal">&#039;*&#039;</code>
   as the <code class="parameter">name</code> and <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong> for the
   <code class="parameter">profile</code>.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-imagick.profileimage-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">name</code></dt>
     <dd>
      <span class="simpara">
       The profile name.
      </span>
     </dd>
    
    
     <dt><code class="parameter">profile</code></dt>
     <dd>
      <span class="simpara">
       The profile data.
       If <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>, the specified profile will be deleted.
      </span>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-imagick.profileimage-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.profileimage-errors">
  <h3 class="title">Errori/Eccezioni</h3>
  <p class="para">
   Lancia una ImagickException in caso di errore.
  </p>
 </div>


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