La función Imagick::setFormat() es una función incorporada en PHP que se utiliza para establecer el formato del objeto Imagick.
Sintaxis:
bool Imagick::setFormat( string $format )
Parámetros: esta función acepta un formato de $de parámetro único que contiene un valor de string.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Los siguientes programas ilustran la función Imagick::setFormat() 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 Format $imagick->setFormat('png'); // Get the Format $format = $imagick->getFormat(); echo $format; ?>
Producción:
png
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Set the Format $imagick->setFormat('jpeg'); // Get the Format $format = $imagick->getFormat(); echo $format; ?>
Producción:
jpeg
Referencia: https://www.php.net/manual/en/imagick.setformat.php