當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP ImagickDraw pathCurveToAbsolute()用法及代碼示例


ImagickDraw::pathCurveToAbsolute()函數是PHP中的內置函數,用於繪製三次貝塞爾曲線(參數曲線)。此函數使用起始控製點(x1,y1)到結束控製點(x2,y2)從當前點到(x,y)繪製一條曲線。在最後一個命令中,新的當前點成為多貝塞爾曲線中使用的最終(x,y)坐標對。

用法:

bool ImagickDraw::pathCurveToAbsolute( float $x1, float $y1,
                            float $x2, float $y2, float $x, float $y )

參數:該函數接受上述和以下所述的六個參數:


  • $x1:它指定第一個控製點的x坐標。
  • $y1:它指定第一個控製點的y坐標。
  • $x2:它指定第二個控製點的x坐標。
  • $y2:它指定第二個控製點的y坐標。
  • $x:它指定曲線末端的x坐標。
  • $y:它指定曲線末端的y坐標。

返回值:成功時此函數返回TRUE。

以下示例程序旨在說明PHP中的ImagickDraw::pathCurveToAbsolute()函數:

示例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('green'); 
  
// Set the stroke width 
$draw->setStrokeWidth(5); 
  
// Start a path 
$draw->pathStart(); 
$draw->pathCurveToAbsolute(50, 100, 180, 200, 1360, 200); 
$draw->pathFinish(); 
  
// Set the stroke color 
$draw->setStrokeColor('red'); 
  
// Draw curve to absolute (with pathClose()) 
$draw->pathStart(); 
$draw->pathCurveToAbsolute(500, 20, 80, 40, 60, 900); 
$draw->pathClose(); 
$draw->pathFinish(); 
  
// Set the stroke color 
$draw->setStrokeColor('blue'); 
  
// Draw curve to absolute (with pathClose()) 
$draw->pathStart(); 
$draw->pathCurveToAbsolute(50, 50, 80, 20, 1360, 200); 
$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(); 
  
// Set the stroke color 
$draw->setStrokeColor('white'); 
  
// Set the stroke width 
$draw->setStrokeWidth(5); 
  
// Start a path 
$draw->pathStart(); 
  
// Draw curve to absolute 
$draw->pathCurveToAbsolute(50, 400, 560, 700, 160, 20); 
$draw->pathCurveToAbsolute(1000, 40, 560, 70, 60, 300); 
  
// Close 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.pathcurvetoabsolute.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw pathCurveToAbsolute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。