(PHP 4, PHP 5, PHP 7, PHP 8)
imagesy — 获取图像高度
$image
返回给定 image 对象的高度。
image
一个 GdImage 对象,由图像创建函数之一返回,例如 imagecreatetruecolor()。
返回 image 的高度。
gd
示例 #1 使用 imagesy()
<?php// 创建一个 300*200 的图像$img = imagecreatetruecolor(300, 200);echo imagesy($img); // 200?>