(PECL imagick 2.0.0)
Imagick::getImageResolution — Gets the image X and Y resolution
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Gets the image X and Y resolution.
Returns the resolution as an array. Wirf eine ImagickException bei einem Fehler.
Wirft ImagickException bei Fehlern.
//location of image: c:/htdocs/rose.jpg
$path="c:/htdocs/";
$image=new Imagick($path."rose.jpg");
$array=$image->getImageResolution();
print_r($array);
result:
Array
(
[x]=>75
[y]=>75
)