La función Imagick::getImageProfile() es una función incorporada en PHP que se usa para devolver el perfil de imagen nombrado.
Sintaxis:
string Imagick::getImageProfile( string $name )
Parámetros: esta función acepta un solo parámetro $nombre que contiene el nombre del perfil.
Valor devuelto: esta función devuelve una string que contiene el perfil de la imagen.
Errores/Excepciones: Esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::getImageProfile() 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 Image Profile $imagick->setImageProfile('profile_name', 'profile_data'); // Get the Image Profile $profile = $imagick->getImageProfile('profile_name'); echo $profile; ?>
Producción:
profile_data
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Set the Image Profile $imagick->setImageProfile('color', 'red'); // Use the Image Profile $imagick->setImageBackgroundColor($imagick->getImageProfile('color')); $imagick->setImageAlphaChannel(Imagick::ALPHACHANNEL_SHAPE); // Display the image header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagick.getimageprofile.php