La función Imagick::getFormat() es una función incorporada en PHP que se usa para obtener el formato del objeto Imagick.
Sintaxis:
string Imagick::getFormat( void )
Parámetros: Esta función no acepta ningún parámetro.
Excepciones: esta función lanza ImagickException en caso de error.
Valor de retorno: esta función devuelve un valor de string en caso de éxito.
Los siguientes programas ilustran la función Imagick::getFormat() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Get the Format $format = $imagick->getFormat(); echo $format; ?>
Producción:
It will return an empty string which is the default format.
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('png'); // Get the Format $format = $imagick->getFormat(); echo $format; ?>
Producción:
png
Referencia: https://www.php.net/manual/en/imagick.getformat.php