La función Imagick::getSize() es una función incorporada en PHP que se usa para obtener el tamaño asociado con el objeto imagick.
Sintaxis:
array Imagick::getSize( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve una array con las claves «columnas» y «filas».
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::getSize() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Get the size $size = $imagick->getSize(); print("<pre>".print_r($size, true)."</pre>"); ?>
Producción:
Array ( [columns] => 0 [rows] => 0 )
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Set the size $imagick->setSize('200', '400'); // Get the size $size = $imagick->getSize(); print("<pre>".print_r($size, true)."</pre>"); ?>
Producción:
Array ( [columns] => 200 [rows] => 400 )
Referencia: https://www.php.net/manual/en/imagick.getsize.php