La función Imagick::getRegistry() es una función incorporada en PHP que se usa para obtener la entrada StringRegistry para la clave nombrada o falsa si no está configurada.
Sintaxis:
string Imagick::getRegistry( string $key )
Parámetros: esta función acepta un solo parámetro $key que contiene la clave.
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::getRegistry() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); // Get the Registry $registry = $imagick->getRegistry('key'); echo $registry; ?>
Producción:
// Empty string because no registry with key as 'key' is set.
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png'); // Set the Registry $imagick->setRegistry('key', 'my_value'); // Get the Registry $registry = $imagick->getRegistry('key'); echo $registry; ?>
Producción:
my_value
Referencia: https://www.php.net/manual/en/imagick.getregistry.php