Imagick
在线手册:中文 英文
PHP手册

Imagick::getImageHeight

(PECL imagick 2.0.0)

Imagick::getImageHeightReturns the image height

说明

int Imagick::getImageHeight ( void )

Returns the image height.

返回值

Returns the image height in pixels.

错误/异常

错误时抛出 ImagickException .


Imagick
在线手册:中文 英文
PHP手册
PHP手册 - N: Returns the image height

用户评论:

perching_eagle at yahoo dot com (05-Oct-2007 02:19)

//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