ImagickDraw::pathLineToVerticalRelative()函數是PHP中的內置函數,用於使用相對坐標繪製從當前點到目標點的垂直線路徑。然後,目標點將成為新的當前點。
用法:
bool ImagickDraw::pathLineToVerticalRelative( float $y )
參數:該函數接受一個包含y坐標的單個參數$y。
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的ImagickDraw::pathLineToVerticalRelative()函數:
程序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 color
$draw->setStrokeColor('blue');
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw line using pathLineToVerticalRelative
$draw->pathStart();
$draw->pathMoveToRelative(400, 0);
$draw->pathLineToVerticalRelative(1000);
$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();
$color = ['blue', 'red', 'green',
'yellow', 'orange', 'brown', 'pink'];
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw lines
for ($x = 0; $x < 20; $x++) {
$draw->setStrokeColor($color[$x % 7]);
$draw->pathStart();
$draw->pathMoveToRelative($x * 40, 0);
$draw->pathLineToVerticalRelative(800);
$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.pathlinetoverticalrelative.php
相關用法
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw pathCurveToQuadraticBezierSmoothAbsolute()用法及代碼示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw setFillOpacity()用法及代碼示例
- PHP ImagickDraw setStrokeLineCap()用法及代碼示例
- PHP ImagickDraw setFontSize()用法及代碼示例
- PHP ImagickDraw pathStart()用法及代碼示例
- PHP ImagickDraw getStrokeLineJoin()用法及代碼示例
- PHP ImagickDraw getStrokeLineCap()用法及代碼示例
- PHP ImagickDraw setFontWeight()用法及代碼示例
- PHP ImagickDraw getStrokeAntialias()用法及代碼示例
- PHP ImagickDraw setTextAntialias()用法及代碼示例
- PHP ImagickDraw setTextDecoration()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw pathLineToVerticalRelative() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。