La función Imagick::setImageProfile() es una función incorporada en PHP que se utiliza para establecer el perfil con nombre en el objeto Imagick.
Sintaxis:
bool Imagick::setImageProfile( string $name, string $profile )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $name: Especifica el nombre del perfil.
- $perfil: Especifica el valor del perfil.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Errores/Excepciones: Esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::setImageProfile() 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('color', 'cyan'); // 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:
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('borderColor', 'green'); // Use the Image Profile $imagick->borderImage($imagick->getImageProfile('borderColor'), 1, 1); // Display the image header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagick.setimageprofile.php