Imagick::getImageGeometry


wizard apg

GETS the width and height as an associative array.



<?php

array public Imagick::getImageGeometry();
      
?>

 


This function has no parameters.





This function returns an ARRAY on success.



  1 EXERCISE   

<?php

$path 
PATH2IMGW '/psd/15.psd';

      
$img = new Imagick($path);
      
$data $img->getImageBlob();
      
$geometry $img->getImageGeometry();
      
      echo 
basename($path) . '<br>';
      
      echo 
'<pre>';
      
var_dump($geometry);
       echo 
'</pre>';
       
       
// echo '<br>' . $data;
    
      
?>

 RESULT   


15.psd
array(2) {
  ["width"]=>
  int(800)
  ["height"]=>
  int(530)
}