<?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.getsize.php',
    1 => 'Imagick::getSize',
    2 => 'Returns the size associated with the Imagick object',
  ),
  'up' => 
  array (
    0 => 'class.imagick.php',
    1 => 'Imagick',
  ),
  'prev' => 
  array (
    0 => 'imagick.getsamplingfactors.php',
    1 => 'Imagick::getSamplingFactors',
  ),
  'next' => 
  array (
    0 => 'imagick.getsizeoffset.php',
    1 => 'Imagick::getSizeOffset',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imagick/imagick/getsize.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="imagick.getsize" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Imagick::getSize</h1>
  <p class="verinfo">(PECL imagick 2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">Imagick::getSize</span> &mdash; <span class="dc-title">Returns the size associated with the Imagick object</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-imagick.getsize-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description"><span class="modifier">public</span> <span class="methodname"><strong>Imagick::getSize</strong></span>(): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Get the size in pixels associated with the Imagick object, previously set by <span class="function"><a href="imagick.setsize.php" class="function">Imagick::setSize()</a></span>.
  </p>
  <blockquote class="note"><p><strong class="note">Nota</strong>: 
   <p class="para">
    This method just returns the size that was set using <span class="function"><a href="imagick.setsize.php" class="function">Imagick::setSize()</a></span>. If you want to get the actual width / height of the image, use <span class="function"><a href="imagick.getimagewidth.php" class="function">Imagick::getImageWidth()</a></span> and <span class="function"><a href="imagick.getimageheight.php" class="function">Imagick::getImageHeight()</a></span>.
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 parameters" id="refsect1-imagick.getsize-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">Questa funzione non contiene parametri.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-imagick.getsize-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Returns the size associated with the Imagick object as an array with the
   keys &quot;columns&quot; and &quot;rows&quot;.
  </p>
 </div>

 
 <div class="refsect1 examples" id="refsect1-imagick.getsize-examples">
  <h3 class="title">Esempi</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 Getting the size of a raw RGB image set at 200x400, after scaling to 400x800 (compared to width / height)</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: #FF8000">//Set size first and then load the raw image<br /></span><span style="color: #0000BB">$img </span><span style="color: #007700">= new </span><span style="color: #0000BB">Imagick</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">$img</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setSize</span><span style="color: #007700">(</span><span style="color: #0000BB">200</span><span style="color: #007700">, </span><span style="color: #0000BB">400</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$img</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">readImage</span><span style="color: #007700">(</span><span style="color: #DD0000">"image.rgb"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$img</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">scaleImage</span><span style="color: #007700">(</span><span style="color: #0000BB">400</span><span style="color: #007700">, </span><span style="color: #0000BB">800</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$size </span><span style="color: #007700">= </span><span style="color: #0000BB">$img</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getSize</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$size</span><span style="color: #007700">);<br /><br />echo </span><span style="color: #0000BB">$img</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getImageWidth</span><span style="color: #007700">().</span><span style="color: #DD0000">"x"</span><span style="color: #007700">.</span><span style="color: #0000BB">$img</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getImageHeight</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Il precedente esempio visualizzerà:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [columns] =&gt; 200
    [rows] =&gt; 400
)
400x800</pre>
</div>
    </div>
   </div>
  </p>
 </div>


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