当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick setImageProperty()用法及代码示例


Imagick::setImageProperty()函数是PHP中的内置函数,用于设置image属性。图像属性和图像伪像之间的主要区别在于,属性是公共的,而伪像是私有的。

用法:

bool Imagick::setImageProperty( string $name, string $value )

参数:该函数接受上述和以下描述的两个参数:


  • $name:此参数保存属性的名称。
  • $value:此参数保存属性的值。

返回值:成功时此函数返回TRUE。

以下示例程序旨在说明PHP中的Imagick::setImageProperty()函数:

程序:

<?php 
  
// Create a new Imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Apply the setImageProperty() function 
$imagick->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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick setImageProperty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。