Friday, June 12, 2026
HomeLanguagesPHP | Imagick removeImageProfile() Function

PHP | Imagick removeImageProfile() Function

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

RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS