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


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


Imagick::getImageAttribute()函数是PHP中的内置函数,用于获取键的命名属性。

用法:

string Imagick::getImageAttribute( string $key )

参数:该函数接受单个参数$key,该参数以字符串格式保存键值。


返回值:成功时此函数返回一个字符串值。

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

程序1:

<?php 
  
// Create a Imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the attribute with key 'hello' 
$attribute = $imagick->getImageAttribute('hello'); 
  
echo $attribute; 
?>

输出:

Empty string as it is the default value. 

程序2:

<?php 
  
// Create a Imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set an attribute with key 'hello' 
$imagick->setImageAttribute('hello', 'world'); 
  
// Get the attribute with key 'hello' 
$attribute = $imagick->getImageAttribute('hello'); 
  
echo $attribute; 
?>

输出:

world

参考: https://www.php.net/manual/en/imagick.getimageattribute.php



相关用法


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