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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。