Monday, November 17, 2025
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
32402 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6772 POSTS0 COMMENTS
Nicole Veronica
11920 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11991 POSTS0 COMMENTS
Shaida Kate Naidoo
6899 POSTS0 COMMENTS
Ted Musemwa
7155 POSTS0 COMMENTS
Thapelo Manthata
6852 POSTS0 COMMENTS
Umr Jansen
6843 POSTS0 COMMENTS