PHP | imagesy() Function
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 // store the image in variable. $image = imagecreatefrompng( "gfg.png" ); // Display the height of image. echo imagesy( $image ); ?> |
Output:
184
Program 2:
<?php // Create the size of image or blank image. $image = imagecreatetruecolor(500, 300); // Display the height of image. echo imagesy( $image ); ?> |
Output:
300
Related Articles:
Reference: http://php.net/manual/en/function.imagesy.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name inside a function in PHP ?
- How to get the function name from within that function using JavaScript ?
- p5.js | pow() function
- p5.js | day() function
- PHP | end() Function
- D3.js | d3.set.add() Function
- p5.js | sq() function
- PHP | abs() Function
- PHP | pos() Function
- PHP | key() Function
- p5.js | abs() function
- D3.js | d3.sum() function
- D3.js | d3.mean() function
- p5.js | min() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.