ImagickDraw::getStrokeWidth()函数是PHP的内置函数,用于返回用于绘制对象轮廓的笔触宽度。
用法:
float ImagickDraw::getStrokeWidth( void )
参数:该函数不接受任何参数。
返回值:成功时此函数返回笔划宽度。
错误/异常:错误时引发ImagickException。
以下示例程序旨在说明PHP中的ImagickDraw::getStrokeWidth()函数:
程序:
<?php
// Create an ImagickDraw object
$draw = new \ImagickDraw();
// Set the Stroke Color
$draw->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.net/manual/en/imagickdraw.getstrokewidth.php
相关用法
- PHP GmagickDraw getstrokewidth()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw pathFinish()用法及代码示例
- PHP ImagickDraw getStrokeLineCap()用法及代码示例
- PHP ImagickDraw pathLineToHorizontalAbsolute()用法及代码示例
- PHP ImagickDraw pathEllipticArcRelative()用法及代码示例
- PHP ImagickDraw comment()用法及代码示例
- PHP ImagickDraw clear()用法及代码示例
- PHP ImagickDraw getStrokeLineJoin()用法及代码示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw pathLineToRelative()用法及代码示例
- PHP ImagickDraw polygon()用法及代码示例
- PHP ImagickDraw bezier()用法及代码示例
- PHP ImagickDraw affine()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw getStrokeWidth() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。