La función Gmagick::getimagewidth() es una función incorporada en PHP que se usa para obtener el ancho de la imagen, que es la longitud horizontal de la imagen.
Sintaxis:
int Gmagick::getimagewidth( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve un valor entero que contiene el ancho de una imagen.
Excepciones: esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::getimagewidth() en PHP:
Programa 1:
<?php // Create a new Gmagick object // https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png $gmagick = new Gmagick('geeksforgeeks.png'); // Get the image width $width = $gmagick->getimagewidth(); echo $width; ?>
Producción:
667
Programa 2:
<?php // Create a new Gmagick object // https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png $gmagick = new Gmagick('geeksforgeeks.png'); // Set the image width $gmagick->scaleimage(200, 200); // Get the image width $width = $gmagick->getimagewidth(); echo $width; ?>
Producción:
200
Referencia: https://www.php.net/manual/en/gmagick.getimagewidth.php