La función Imagick::getImageWidth() es una función incorporada en PHP que se usa para obtener el ancho de la imagen.
Sintaxis:
int Imagick::getImageWidth( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el ancho de la imagen en píxeles.
Imagen original
El siguiente programa ilustra la función Imagick::getImageWidth() en PHP:
Programa:
<?php // require_once('path/vendor/autoload.php'); // Create an Imagick Object $image = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png'); // Function to get the width of image $width = $image->getImageWidth(); // Display the image width in pixel. print_r($width); ?>
Producción:
667
Artículos relacionados:
Referencia: http://php.net/manual/en/imagick.getimagewidth.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