Monday, December 22, 2025
HomeLanguagesPHP | Imagick stripImage() Function

PHP | Imagick stripImage() Function

The Imagick::stripImage() function is an inbuilt function in PHP which is used to strip all profiles and comments from an image.

Syntax:

bool Imagick::stripImage( void )

Parameters:This function doesn’t accepts any parameter.

Return Value: This function returns TRUE on success.

Exceptions: This function throws ImagickException on error.

Below given programs illustrate the Imagick::stripImage() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set some profiles
$imagick->setImageProfile('name1', 'value1');
$imagick->setImageProfile('name2', 'value2');
  
echo 'Before stripImage() function: <br>';
print("<pre>" . print_r($imagick->
                        getImageProfiles(), true)
              . "</pre><br>");
  
// Strip the image
$imagick->stripImage();
  
echo 'After stripImage() function: <br>';
print("<pre>" . print_r($imagick->
                        getImageProfiles(), true)
              . "</pre>");
?>


Output:

Before stripImage() function:
Array
(
    [name1] => value1
    [name2] => value2
)

After stripImage() function:
Array
(
)

Program 2:




<?php
   
// Create a new imagick object
$imagick = new Imagick(
   
// Add a comment
$imagick->commentImage("This is my comment.");
   
echo 'Before stripImage() function: <br>';
print("<pre>" . print_r($imagick->
                        getImageProperty("comment"), true) 
              . "</pre><br>");
   
// Strip the image
$imagick->stripImage();
   
echo 'After stripImage() function: <br>';
print("<pre>" . print_r($imagick->
                        getImageProperty("comment"), true) 
              . "</pre><br>");
?>


Output:

Before stripImage() function:
This is my comment.

After stripImage() function:

Reference: https://www.php.net/manual/en/imagick.stripimage.php

RELATED ARTICLES

Most Popular

Dominic
32456 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6911 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS