当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickDraw pathCurveToSmoothAbsolute()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw pathCurveToSmoothAbsolute() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。