The imagesx() function is an inbuilt function in PHP which is used to return the width of the given image.
Syntax:
int imagesx( $image )
Parameters: This function accepts single parameters $image which is mandatory. This $image variable can store the image created by imagecreatetruecolor() image creation function.
Return Value: This function returns the width of the image or FALSE on errors.
Below programs illustrate the imagesx() function in PHP.
Program 1:
<?php
$image = imagecreatefrompng( "gfg.png" );
echo imagesx( $image );
?>
|
Output:
667
Program 2:
<?php
$image = imagecreatetruecolor(500, 300);
echo imagesx( $image );
?>
|
Output:
500
Related Articles:
Reference: http://php.net/manual/en/function.imagesx.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
23 Aug, 2019
Like Article
Save Article