Open In App

PHP | Imagick setImageProperty() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax:

bool Imagick::setImageProperty( string $name, string $value )

Parameters: This function accepts two parameters as mentioned above and described below:

  • $name: This parameter holds the name of the property.
  • $value: This parameter holds the value of the property.

Return Value: This function returns TRUE on success.

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

Program:




<?php
  
// Create a new Imagick object
$imagick = new Imagick(
  
// Apply the setImageProperty() function
$imagick->setImageProperty("property_name", "property_value");
  
// Apply the getImageProperty() function
$property_name = $imagick->getImageProperty("property_name");
echo $property_name;
?>


Output:

property_value

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


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