La función Imagick::getImageHeight() es una función incorporada en PHP que se usa para obtener la altura de la imagen.
Sintaxis:
int Imagick::getImageHeight( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve la altura de la imagen en píxeles.
Imagen original:
El siguiente programa ilustra la función Imagick::getImageHeight() en PHP:
Programa:
<?php // require_once('vendor/autoload.php'); // Create an Imagick Object $image = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png'); // getImageHeight function to calculate image height $height = $image->getImageHeight(); // Display the height of image print_r($height); ?>
Producción:
184
Artículos relacionados:
Referencia: http://php.net/manual/en/imagick.getimageheight.php
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA