©
This document uses PHP Chinese website manual Release
(PHP 4, PHP 5, PHP 7)
imagesy — 取得图像高度
$image
) imagesy() 返回
image
所代表的图像的高度。
Example #1 使用 imagesy()
<?php
// create a 300*200 image
$img = imagecreatetruecolor ( 300 , 200 );
echo imagesy ( $img ); // 200
?>
参见 imagecreatetruecolor() , getimagesize() 和 imagesx() 。