Open In App

PHP | Imagick setImageProperty() Function

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:

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

Article Tags :