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