Monday, September 23, 2024
Google search engine
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

Recent Comments