ImagickDraw::pathCurveToSmoothAbsolute()函數是PHP中的一個內置函數,用於使用絕對坐標從當前點到(x,y)繪製三次貝塞爾曲線。
用法:
bool ImagickDraw::pathCurveToSmoothAbsolute ( float $x2, float $y2, float $x, float $y )
參數:該函數接受上述和以下所述的四個參數:
- $x2:它指定第二個控製點的x坐標。
- $y2:它指定第二個控製點的y坐標。
- $x:它指定終點的x坐標。
- $y:它指定終點的y坐標。
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的ImagickDraw::pathCurveToSmoothAbsolute()函數:
程序1:
<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->newImage(800, 250, 'black'); 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
$draw->setFillColor('blue'); 
  
// Set the stroke color 
$draw->setStrokeColor('white'); 
  
// Draw curves to Quadratic Bezier Relative (with pathClose()) 
$draw->pathStart(); 
$draw->pathCurveToSmoothAbsolute(50, 250, 1900, 20); 
$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, 'black'); 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
$draw->setFillColor('blue'); 
  
// Set the stroke color 
$draw->setStrokeColor('white'); 
  
// Draw curves to Quadratic Bezier Relative (without pathClose()) 
$draw->pathStart(); 
$draw->pathCurveToSmoothAbsolute(150, 250, 800, 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.pathcurvetosmoothabsolute.php
相關用法
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw pathCurveToQuadraticBezierSmoothAbsolute()用法及代碼示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw setFillOpacity()用法及代碼示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw setStrokeLineCap()用法及代碼示例
- PHP ImagickDraw setFontSize()用法及代碼示例
- PHP ImagickDraw pathStart()用法及代碼示例
- PHP ImagickDraw getStrokeLineJoin()用法及代碼示例
- PHP ImagickDraw getStrokeLineCap()用法及代碼示例
- PHP ImagickDraw setFontWeight()用法及代碼示例
- PHP ImagickDraw setTextAntialias()用法及代碼示例
- PHP ImagickDraw setTextDecoration()用法及代碼示例
- PHP ImagickDraw polygon()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw pathCurveToSmoothAbsolute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。
