//file location c:/htdocs/rose.jpg
$image=new Imagick("c:/htdocs/rose.jpg");
$height=$image->getImageHeight();
print "the image height is ".$height;
result:
the image height is 134
(PECL imagick 2, PECL imagick 3)
Imagick::getImageHeight — Retourne la hauteur de l'image
Cette fonction ne contient aucun paramètre.
Retourne la hauteur de l'image en pixels.
Lance une exception ImagickException si une erreur survient.
//file location c:/htdocs/rose.jpg
$image=new Imagick("c:/htdocs/rose.jpg");
$height=$image->getImageHeight();
print "the image height is ".$height;
result:
the image height is 134