Thursday, September 25, 2025
HomeLanguagesPHP | Gmagick setimageprofile() Function

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 = new Gmagick('neveropen.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 = new Gmagick('neveropen.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, neveropen 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!
RELATED ARTICLES

Most Popular

Dominic
32319 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6682 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6795 POSTS0 COMMENTS
Ted Musemwa
7071 POSTS0 COMMENTS
Thapelo Manthata
6754 POSTS0 COMMENTS
Umr Jansen
6761 POSTS0 COMMENTS