當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。