📜  PHP |想象一下 setImageAttribute()函数

📅  最后修改于: 2022-05-13 01:56:30.098000             🧑  作者: Mango

PHP |想象一下 setImageAttribute()函数

Imagick::setImageAttribute()函数是PHP中的一个内置函数,用于设置键的值属性。

句法:

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

参数:该函数接受上面提到的两个参数,如下所述:

  • $key:此参数保存图像属性的键。
  • $value:此参数保存图像属性的值。

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

下面的程序说明了PHP中的Imagick::setImageAttribute()函数

方案一:

setImageAttribute('my_key', 'my_value');
  
// Get the attribute with key 'my_key'
$attribute = $imagick->getImageAttribute('my_key');
  
echo $attribute;
?>

输出:

my_value

方案二:

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