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


PHP ImagickDraw setClipPath()用法及代碼示例


ImagickDraw::setClipPath()函數是PHP中的內置函數,用於將命名的剪切路徑與圖像相關聯。隻要剪切路徑所繪製的區域保持有效,就隻會對其進行修改。

用法:

bool ImagickDraw::setClipPath( string $clip_mask )

參數:該函數接受單個參數$clip_mask,該參數保存剪貼蒙版。


返回值:成功時此函數返回TRUE。

異常:該函數在錯誤時引發ImagickException。

下麵給出的程序說明了PHP中的ImagickDraw::setClipPath()函數:

程序1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
   
// Set the clipPath 
$draw->setClipPath('nameOfClipPath'); 
   
// Get clip path 
echo $draw->getClipPath(); 
?>

輸出:

nameOfClipPath

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->newImage(800, 250, 'green'); 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Setup a clipPath 
$draw->pushClipPath('myClipPath'); 
$draw->rectangle(100, 40, 200, 200); 
$draw->popClipPath(); 
$draw->setClipPath('myClipPath'); 
  
// Extra commands which are going to  
// be ignore as they are outside the 
// area of the clipPath 
$draw->rectangle(10, 100, 400, 400); 
$draw->line(100, 100, 400, 400); 
  
// 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.setclippath.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw setClipPath() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。