
<?php
array public Imagick::getImageGeometry();
?>
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;
?>
array(2) {
["width"]=>
int(800)
["height"]=>
int(530)
}