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


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


ImagickDraw::pathStart()函数是PHP中的一个内置函数,用于声明路径绘制列表的开始。以后,pathFinish()函数用于终止此列表。

用法:

bool ImagickDraw::pathStart( void )

参数:此函数不接受任何参数。


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

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

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

程序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(10); 
  
$draw->setFillColor('green'); 
  
// Start the path 
$draw->pathStart(); 
  
// Draw a pattern 
$draw->pathMoveToRelative(400, 200); 
$draw->pathLineToAbsolute(400, 100); 
$draw->pathLineToAbsolute(300, 200); 
$draw->pathLineToAbsolute(300, 100); 
  
// 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 stroke width 
$draw->setStrokeWidth(10); 
  
// Set the stroke color 
$draw->setStrokeColor('red'); 
  
// Set the fill color 
$draw->setFillColor('white'); 
  
// Start the path 
$draw->pathStart(); 
$x = 1; 
  
// Draw a pattern 
while ($x < 10) { 
    $draw->pathMoveToAbsolute($x * 100, 0); 
    $draw->pathLineToHorizontalAbsolute($x * 100); 
    $draw->pathMoveToAbsolute(0, $x * 100); 
    $x++; 
} 
  
$draw->pathclose(); 
  
// 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.pathstart.php



相关用法


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