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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。