©
本文档使用 PHP中文网手册 发布
(PECL imagick 2.0.0)
Imagick::getImageHeight — Returns the image height
Returns the image height.
Returns the image height in pixels.
错误时抛出 ImagickException。
[#1] perching_eagle at yahoo dot com [2007-10-04 18:19:22]
//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