PHP | Gmagick setimageprofile() Function

The Gmagick::setimageprofile() function is an inbuilt function in PHP which is used to add a named profile to the Gmagick object.
Syntax:
Gmagick Gmagick::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 Gmagick object on success.
Exceptions: This function throws GmagickException on error.
Below given programs illustrate the Gmagick::setimageprofile() function in PHP:
Used Image:
Program 1:
| <?php  Â// Create a new Gmagick object $gmagick= newGmagick('zambiatek.png');   Â// Set the image profile $gmagick->setimageprofile('profile_name', 'profile_value');   Â// Get the image profile $profile= $gmagick->getimageprofile("profile_name"); echo$profile; ?>  | 
Output:
profile_value
Program 2:
| <?php  Â// Create a new Gmagick object $gmagick= newGmagick('zambiatek.png');  Â// Set the color using image profile $gmagick->setImageProfile('color', 'blue');  Â// Use the image profile $gmagick->borderimage($gmagick->getimageprofile('color'), 5, 5);  Â// Display the image header("Content-Type: image/png"); echo$gmagick->getImageBlob(); ?>  | 
Output:
Reference: https://www.php.net/manual/en/gmagick.setimageprofile.php
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
 
				 
					



