La función Imagick::getOption() es una función incorporada en PHP que se usa para obtener un valor asociado con la clave especificada.
Sintaxis:
string Imagick::getOption( string $key )
Parámetros: esta función acepta un solo parámetro $key que contiene el nombre de la opción.
Valor de retorno: esta función devuelve un valor de string que contiene el valor asociado con la clave.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::getOption() 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 option with key 'key1' $option = $imagick->getOption('key1'); echo $option; ?>
Producción:
//Empty string because it is the default value.
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Set the option $imagick->setOption('key1', 'option1'); // Get the option with key 'key1' $option = $imagick->getOption('key1'); echo $option; ?>
Producción:
option1
Referencia: https://www.php.net/manual/en/imagick.getoption.php