La función Gmagick::getsize() es una función incorporada en PHP que se usa para obtener el tamaño asociado con el objeto Gmagick.
Sintaxis:
array Gmagick::getsize( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve una array asociativa que contiene las claves «filas» y «columnas».
Excepciones: esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::getsize() 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 size $res = $gmagick->getsize(); print("<pre>".print_r($res, true)."</pre>"); ?>
Producción:
Array // Which is the default value ( [columns] => 0 [rows] => 0 )
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 size $gmagick->setsize(800, 300); // Get the size $res = $gmagick->getsize(); print("<pre>".print_r($res, true)."</pre>"); ?>
Producción:
Array ( [columns] => 800 [rows] => 300 )
Referencia: https://www.php.net/manual/en/gmagick.getsize.php