PHP | imagesy() Function (original) (raw)
Last Updated : 11 Jul, 2025
The imagesy() function is an inbuilt function in PHP which is used to return the height of the given image. Syntax:
int imagesy( $image )
Parameters: This function accepts single parameters $image which is mandatory. This $image variable store the image created by imagecreatetruecolor() image creation function.Return Value: This function returns the height of the image or FALSE on errors. Below programs illustrate the imagesy() function in PHP.Program 1:
php `
`
Output:
184
Program 2:
php `
`
Output:
300
Related Articles:
Reference: https://www.php.net/manual/en/function.imagesy.php