Open In App

PHP | Imagick deleteImageProperty() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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


Last Updated : 31 Oct, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads