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


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


ImagickDraw::pathMoveToRelative()函数是PHP中的内置函数,用于使用相对坐标在给定坐标处启动新的sub-path。然后,当前点成为指定的坐标。此函数用于在开始绘制任何东西之前设置初始坐标。

用法:

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

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


  • $x:它指定x坐标。
  • $y:它指定y坐标。

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

异常:该函数在错误时引发ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::pathMoveToRelative()函数:

程序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 stroke width 
$draw->setStrokeWidth(30); 
  
$draw->pathStart(); 
  
// Setting the stating point to (400, 100) 
$draw->pathMoveToRelative(400, 100); 
  
// Setting the end point to (500, 100) 
$draw->pathLineToHorizontalAbsolute(500); 
$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 stroke width 
$draw->setStrokeWidth(30); 
  
$draw->setFillColor('red'); 
  
$draw->pathStart(); 
  
// Setting the stating point to (400, 100), draw a rectangle 
$draw->pathMoveToRelative(400, 100); 
$draw->pathLineToAbsolute(400, 200); 
$draw->pathLineToAbsolute(300, 200); 
$draw->pathLineToAbsolute(300, 100); 
  
$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.pathmovetorelative.php



相关用法


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