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


PHP Imagick setImageAttribute()用法及代碼示例


Imagick::setImageAttribute()函數是PHP中的內置函數,用於設置鍵的value屬性。

用法:

bool Imagick::setImageAttribute( string $key, string $value )

參數:該函數接受上述和以下描述的兩個參數:


  • $key:此參數保留image屬性的鍵。
  • $value:此參數保存image屬性的值。

返回值:成功時此函數返回TRUE。

以下示例程序旨在說明PHP中的Imagick::setImageAttribute()函數:

示例1:

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

輸出:

my_value

示例2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Write the caption in a image 
$imagick->newPseudoImage(800, 350, "caption:GeekforGeeks"); 
  
// Set the my_color attribute to green 
$imagick->setImageAttribute('my_color', 'green'); 
  
$imagick->floodfillPaintImage(  
                 $imagick->getImageAttribute('my_color'), 
                 1, "white", 1, 1, false); 
  
// Show the output 
$imagick->setformat('png'); 
header("Content-Type: image/png"); 
  
echo $imagick->getImageBlob(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagick.setimageattribute.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick setImageAttribute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。