PHP Conference Japan 2024

Imagick::getImageHeight

(PECL imagick 2, PECL imagick 3)

Imagick::getImageHeight返回图像高度

描述

public Imagick::getImageHeight(): int

返回图像高度。

参数

此函数没有参数。

返回值

返回图像高度(以像素为单位)。

错误/异常

出错时抛出 ImagickException。

添加注释

用户贡献的注释 1 条注释

perching_eagle at yahoo dot com
17 年前
//文件位置 c:/htdocs/rose.jpg
$image=new Imagick("c:/htdocs/rose.jpg");
$height=$image->getImageHeight();
print "the image height is ".$height;

结果
the image height is 134
To Top