La función imagesx() es una función incorporada en PHP que se usa para devolver el ancho de la imagen dada.
Sintaxis:
int imagesx( $image )
Parámetros: esta función acepta parámetros únicos $imagen , que es obligatorio. Esta variable $image puede almacenar la imagen creada por la función de creación de imágenes imagecreatetruecolor().
Valor devuelto: esta función devuelve el ancho de la imagen o FALSO en caso de errores.
Los siguientes programas ilustran la función imagesx() en PHP.
Programa 1:
<?php // store the image in variable. $image = imagecreatefrompng("gfg.png"); // Display the width of image. echo imagesx($image); ?>
Producción:
667
Programa 2:
<?php // Create the size of image or blank image. $image = imagecreatetruecolor(500, 300); // Display the width of image. echo imagesx($image); ?>
Producción:
500
Artículos relacionados:
Referencia: http://php.net/manual/en/function.imagesx.php