📜  PHP | imagickdraw getStrokeWidth()函数

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

PHP | imagickdraw getStrokeWidth()函数

ImagickDraw::getStrokeWidth()函数是PHP的一个内置函数,用于返回用于绘制对象轮廓的笔划宽度。

句法:

float ImagickDraw::getStrokeWidth( void )

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

返回值:此函数在成功时返回笔画宽度。

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

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

程序:

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

输出:

7

参考: http: PHP。 PHP