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


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


ImagickDraw::pathCurveToRelative()函數是PHP中的內置函數,用於從當前點到(x,y)繪製三次貝塞爾曲線,並使用(x1,y1)作為曲線起點處的控製點,而(x2 ,y2)作為曲線末端的控製點(使用相對坐標)。

用法:

bool ImagickDraw::pathCurveToRelative( 
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。

異常:該函數在錯誤時引發ImagickException。

下麵給出的程序說明了PHP中的ImagickDraw::pathCurveToRelative()函數:

程序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('black'); 
  
// Set the stroke color 
$draw->setStrokeColor('white'); 
  
// Draw curves to Quadratic Bezier Relative (without pathClose()) 
$draw->pathStart(); 
$draw->pathCurveToRelative(50, 250, 900, 20, 100, 300); 
$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('black'); 
  
// Set the stroke color 
$draw->setStrokeColor('white'); 
  
// Draw curves to Quadratic Bezier Relative (with pathClose()) 
$draw->pathStart(); 
$draw->pathCurveToRelative(50, 250, 1900, 20, 100, 300); 
$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(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagickdraw.pathcurvetorelative.php



相關用法


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