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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。