PHP |想象一下 setImageProperty()函数
Imagick::setImageProperty()函数是PHP中的一个内置函数,用于设置图像属性。图像属性和图像工件之间的主要区别在于属性是公共的,而工件是私有的。
句法:
bool Imagick::setImageProperty( string $name, string $value )
参数:该函数接受上面提到的两个参数,如下所述:
- $name:此参数保存属性的名称。
- $value:此参数保存属性的值。
返回值:此函数在成功时返回 TRUE。
下面的程序说明了PHP中的Imagick::setImageProperty()函数:
程序:
setImageProperty("property_name", "property_value");
// Apply the getImageProperty() function
$property_name = $imagick->getImageProperty("property_name");
echo $property_name;
?>
输出:
property_value
参考: https://www. PHP.net/manual/en/imagick.setimageproperty。 PHP