ImagickDraw::pathCurveToQuadraticBezierAbsolute()函數是PHP中的內置函數,用於繪製二次Bezier曲線,該曲線僅是參數二次曲線。
用法:
bool ImagickDraw::pathCurveToQuadraticBezierAbsolute( float $x1, float $y1, float $x, float $y )
參數:該函數接受上述和以下所述的四個參數:
- $x1:它指定控製點的x坐標。
- $y1:它指定控製點的y坐標。
- $x:它指定終點的x坐標。
- $y:它指定終點的y坐標。
返回值:成功時此函數返回TRUE。
以下示例程序旨在說明PHP中的ImagickDraw::pathCurveToQuadraticBezierAbsolute()函數:
示例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();
$draw->setFillColor('white');
// Set the stroke color
$draw->setStrokeColor('red');
// Draw curve to Quadratic Bezier Absolute (with pathClose())
$draw->pathStart();
$draw->pathCurveToQuadraticBezierAbsolute(150, 250, 950, 250);
$draw->pathClose();
$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();
$draw->setFillColor('white');
// Set the stroke color
$draw->setStrokeColor('blue');
// Draw curve to Quadratic Bezier Absolute (without pathClose())
$draw->pathStart();
$draw->pathCurveToQuadraticBezierAbsolute(350, 250, 750, 250);
$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.pathcurvetoquadraticbezierabsolute.php
相關用法
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw destroy()用法及代碼示例
- PHP ImagickDraw getStrokeDashOffset()用法及代碼示例
- PHP ImagickDraw setTextEncoding()用法及代碼示例
- PHP ImagickDraw setClipPath()用法及代碼示例
- PHP ImagickDraw getTextAlignment()用法及代碼示例
- PHP ImagickDraw getFillRule()用法及代碼示例
- PHP ImagickDraw getTextEncoding()用法及代碼示例
- PHP ImagickDraw getClipPath()用法及代碼示例
- PHP ImagickDraw color()用法及代碼示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw comment()用法及代碼示例
- PHP ImagickDraw polyline()用法及代碼示例
- PHP ImagickDraw pathMoveToRelative()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw pathCurveToQuadraticBezierAbsolute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。