📜  PHP | imagickdraw getStrokeOpacity()函数

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

PHP | imagickdraw getStrokeOpacity()函数

ImagickDraw::getStrokeOpacity()函数是PHP中的一个内置函数,用于返回描边对象轮廓的不透明度。

句法:

float ImagickDraw::getStrokeOpacity( void )

参数:此函数不接受任何参数。

返回值:此函数在成功时返回笔画不透明度。

错误/异常:它会在错误时引发 ImagickException。

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

程序:

setStrokeColor('Green');
  
// Set the Fill Color
$draw->setFillColor('Red');
  
// Set the stroke width
$draw->setStrokeWidth(7);
  
// Draw the rectangle
$draw->rectangle(40, 30, 200, 260);
  
// Set the stroke opacity
$draw->setStrokeOpacity(0.5);
  
// Display the StrokeOpacity 
echo $draw->getStrokeOpacity();
?>

输出:

0.49999237048905

参考: http: PHP。 PHP