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


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


ImagickDraw::pathLineToRelative()函数是PHP中的内置函数,用于使用相对坐标绘制从当前点到给定坐标的线路径。然后,坐标成为新的当前点。可以使用pathMoveToRelative()函数设置初始点。

用法:

bool ImagickDraw::pathLineToRelative( float $x, float $y )

参数:该函数接受上述和以下描述的两个参数:


  • $x:它指定起始的x坐标。
  • $y:它指定起始y坐标。

返回值:成功时此函数返回TRUE。

以下示例程序旨在说明PHP中的ImagickDraw::pathLineToRelative()函数:

示例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 fill color 
$draw->setFillColor('black'); 
  
// Create a path 
$draw->pathStart(); 
  
// Draw a line 
// Start coordinates of line 
$draw->pathMoveToRelative(350, 50); 
  
// End coordinates of line 
$draw->pathLineToRelative(50, 150); 
  
// End 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(); 
?>

输出:

示例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(); 
  
// Set the fill color 
$draw->setFillColor('yellow'); 
  
// Set the stroke color 
$draw->setStrokeColor('black'); 
  
// Set the stroke width 
$draw->setStrokeWidth(1); 
  
// Create a path 
$draw->pathStart(); 
  
// Draw a star 
$draw->pathMoveToRelative(350, 20);  
$draw->pathLineToRelative(40, 60);  
$draw->pathLineToRelative(80, 20);  
$draw->pathLineToRelative(-80, 30);  
$draw->pathLineToRelative(30, 60);  
$draw->pathLineToRelative(-50, -20);  
$draw->pathLineToRelative(-50, 40);  
$draw->pathLineToRelative(10, -70);  
$draw->pathLineToRelative(-50, -10);  
$draw->pathLineToRelative(50, -30);  
$draw->pathLineToRelative(20, -80);  
  
// End 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.pathlinetorelative.php



相关用法


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