La función Imagick::setSize() es una función incorporada en PHP que se usa para establecer el tamaño asociado con un objeto imagick.
Sintaxis:
bool Imagick::setSize( int $columns, int $rows )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $columnas: Especifica el ancho en píxeles.
- $filas: Especifica la altura en píxeles.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los programas dados a continuación ilustran la función Imagick::setSize() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Set the size $imagick->setSize('500', '800'); // Get the size $size = $imagick->getSize(); print("<pre>".print_r($size, true)."</pre>"); ?>
Producción:
Array ( [columns] => 500 [rows] => 800 )
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('250', '900'); // Get the size $size = $imagick->getSize(); print("<pre>".print_r($size, true)."</pre>"); ?>
Producción:
Array ( [columns] => 250 [rows] => 900 )
Referencia: https://www.php.net/manual/en/imagick.setsize.php