Open In App

PHP | Imagick getImageProperty() Function

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

Syntax:



string Imagick::getImageProperty( string $name )

Parameters: This function accepts single parameter $name which holds the name of property.

Return Value: This function returns the property value on success.



Below program illustrates the Imagick::getImageProperty() 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.getimageproperty.php

Article Tags :