PHP | imagey()函数
imagesy()函数是PHP中的一个内置函数,用于返回给定图像的高度。
句法:
int imagesy( $image )
参数:此函数接受单个参数$image ,这是强制性的。此$image变量存储由 imagecreatetruecolor() 图像创建函数创建的图像。
返回值:此函数返回图像的高度或错误时返回 FALSE。
下面的程序说明了PHP中的imagesy()函数。
方案一:
输出:
184
方案二:
输出:
300
相关文章:
- PHP | imagedashedline()函数
- PHP | imagecolorat()函数
- PHP | imagepolygon()函数
参考: 函数 : PHP 。 PHP