Saturday, November 22, 2025
HomeLanguagesPHP | Imagick setImageProfile() Function

PHP | Imagick setImageProfile() Function

The Imagick::setImageProfile() function is an inbuilt function in PHP which is used to set the named profile to the Imagick object.

Syntax:

bool Imagick::setImageProfile( string $name, string $profile )

Parameters:This function accepts two parameters as mentioned above and described below:

  • $name: It specifies the name of the profile.
  • $profile: It specifies the value of the profile.

Return Value: This function returns TRUE on success.

Errors/Exceptions: This function throws ImagickException on error.

Below programs illustrate the Imagick::setImageProfile() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// 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();
?>


Output:

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// 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();
?>


Output:

Reference: https://www.php.net/manual/en/imagick.setimageprofile.php

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS