ImagickDraw::pathStart()函數是PHP中的一個內置函數,用於聲明路徑繪製列表的開始。以後,pathFinish()函數用於終止此列表。
用法:
bool ImagickDraw::pathStart( void )
參數:此函數不接受任何參數。
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的ImagickDraw::pathStart()函數:
程序1:
<?php
// Create a new Imagick object
$imagick = new Imagick();
// Create a image on Imagick object
$imagick->newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the stroke width
$draw->setStrokeWidth(10);
$draw->setFillColor('green');
// Start the path
$draw->pathStart();
// Draw a pattern
$draw->pathMoveToRelative(400, 200);
$draw->pathLineToAbsolute(400, 100);
$draw->pathLineToAbsolute(300, 200);
$draw->pathLineToAbsolute(300, 100);
// End the path
$draw->pathFinish();
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type:image/png");
echo $imagick->getImageBlob();
?>
輸出:
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the stroke width
$draw->setStrokeWidth(10);
// Set the stroke color
$draw->setStrokeColor('red');
// Set the fill color
$draw->setFillColor('white');
// Start the path
$draw->pathStart();
$x = 1;
// Draw a pattern
while ($x < 10) {
$draw->pathMoveToAbsolute($x * 100, 0);
$draw->pathLineToHorizontalAbsolute($x * 100);
$draw->pathMoveToAbsolute(0, $x * 100);
$x++;
}
$draw->pathclose();
// End the path
$draw->pathFinish();
// 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.pathstart.php
相關用法
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw setFillOpacity()用法及代碼示例
- PHP ImagickDraw setStrokeLineCap()用法及代碼示例
- PHP ImagickDraw pathCurveToQuadraticBezierSmoothAbsolute()用法及代碼示例
- PHP ImagickDraw setFontSize()用法及代碼示例
- PHP ImagickDraw getStrokeLineJoin()用法及代碼示例
- PHP ImagickDraw getStrokeLineCap()用法及代碼示例
- PHP ImagickDraw setFontWeight()用法及代碼示例
- PHP ImagickDraw polygon()用法及代碼示例
- PHP ImagickDraw setTextAntialias()用法及代碼示例
- PHP ImagickDraw setTextDecoration()用法及代碼示例
- PHP ImagickDraw setTextUnderColor()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw pathStart() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。