Open In App

PHP | Imagick removeImageProfile() Function

Last Updated : 17 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The Imagick::removeImageProfile() function is an inbuilt function in PHP which is used to remove the named image profile. Syntax:
string Imagick::removeImageProfile( string $name )
Parameters: This function accepts a single parameter $name which holds the name of the profile. Return Value: This function returns a string containing the profile. Exceptions: This function throws ImagickException on error. Below programs illustrate the Imagick::removeImageProfile() function in PHP: Program 1: php
<?php

// Create a new Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');

// Add two profiles
$imagick->setImageProfile('name1', 'profile1');
$imagick->setImageProfile('name2', 'profile2');

// Remove the first profile
$imagick->removeImageProfile('name1');

// Get all the profiles
$profile =  $imagick->getImageProfiles('*');
print("<pre>".print_r($profile, true)."</pre>");
?>
Output:
Array
(
    [name2] => profile2
)
Program 2: php
<?php

// Create a new Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');

// Add two profiles
$imagick->setImageProfile('name1', 'profile1');
$imagick->setImageProfile('name2', 'profile2');

// Remove all profiles
$imagick->removeImageProfile('name1');
$imagick->removeImageProfile('name2');

// Get all the profiles
$profile =  $imagick->getImageProfiles('*');
print("<pre>".print_r($profile, true)."</pre>");
?>
Output:
// Empty array because we removed all the profiles
Array     
(
)
Reference: https://www.php.net/manual/en/imagick.removeimageprofile.php

Next Article

Similar Reads