Query: imagesy
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
IMAGESY(3) 1 IMAGESY(3) imagesy - Get image heightSYNOPSISint imagesy (resource $image)DESCRIPTIONReturns the height of the given $image resource.PARAMETERSo $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3).RETURN VALUESReturn the height of the $image or FALSE on errors.EXAMPLESExample #1 Using imagesy(3) <?php // create a 300*200 image $img = imagecreatetruecolor(300, 200); echo imagesy($img); // 200 ?>SEE ALSOimagecreatetruecolor(3), getimagesize(3), imagesx(3). PHP Documentation Group IMAGESY(3)