📜  PHP | imagickdraw setFillAlpha()函数

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

PHP | imagickdraw setFillAlpha()函数

ImagickDraw::setFillAlpha()函数是PHP中的一个内置函数,用于设置使用填充颜色或填充纹理绘制时使用的不透明度。

句法:

bool ImagickDraw::setFillAlpha( float $opacity )

参数:此函数接受单个参数$opacity ,它保存颜色的不透明度,其中 1 表示不透明,0 表示透明。

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

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::setFillAlpha()函数

方案一:

newImage(800, 250, 'white');
  
// Create a new imagickDraw object
$draw = new ImagickDraw();
  
// Set the color to green
$draw->setFillColor('green');
  
// Set the opacity
$draw->setFillAlpha(0.3);
  
// Set the font size
$draw->setFontSize(80);
  
// Annotate a text
$draw->annotation(100, 150, 'GeeksforGeeks');
  
// Render the draw commands
$imagick->drawImage($draw);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

方案二:

newImage(800, 250, 'white');
  
// Create a new imagickDraw object
$draw = new ImagickDraw();
  
// Set the color to green
$draw->setFillColor('green');
  
// Set the opacity
$draw->setFillAlpha(0.3);
  
// Draw a circle
$draw->circle(300, 200, 230, 20);
  
// Set the color to red
$draw->setFillColor('red');
  
// Set the opacity
$draw->setFillAlpha(0.5);
  
// Draw a rectangle
$draw->rectangle(200, 300, 20, 100);
  
// Render the draw commands
$imagick->drawImage($draw);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/imagickdraw.setfillalpha。 PHP