Wednesday, November 19, 2025
HomeLanguagesPHP | imagesx() Function

PHP | imagesx() Function

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
  
// store the image in variable.
$image = imagecreatefrompng("gfg.png");
  
// Display the width of image.
echo imagesx($image);
  
?>


Output:

667

Program 2:




<?php
  
// Create the size of image or blank image.
$image = imagecreatetruecolor(500, 300);
  
// Display the width of image.
echo imagesx($image);
  
?>


Output:

500

Related Articles:

Reference: http://php.net/manual/en/function.imagesx.php

RELATED ARTICLES

Most Popular

Dominic
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6775 POSTS0 COMMENTS
Nicole Veronica
11924 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6903 POSTS0 COMMENTS
Ted Musemwa
7159 POSTS0 COMMENTS
Thapelo Manthata
6859 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS