Open In App

PHP | Imagick deleteImageProperty() Function

The Imagick::deleteImageProperty() function is an inbuilt function in PHP which is used to delete the image property. The main difference between image properties and image artifacts is that properties are public whereas artifacts are private.

Syntax:



bool Imagick::deleteImageProperty( string $name )

Parameters: This function accepts a single parameter $name which holds the name of property.

Return Value: This function returns TRUE on success.



Errors/Exceptions: This function throws ImagickException on error.

Below program illustrates the Imagick::deleteImageProperty() function in PHP:

Program:




<?php
  
// Create a new Imagick object
$imagick = new Imagick(
  
// Apply the setImageProperty() function to create a property
$imagick->setImageProperty("property_name", "property_value");
  
// Apply the deleteImageProperty() function to delete that property
$imagick->deleteImageProperty("property_name");
  
?>

Output:
This program deletes the image property

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

Article Tags :