Friday, November 21, 2025
HomeLanguagesPHP | Imagick setImageProperty() Function

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:

  • $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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6783 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7167 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS