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


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


ImagickDraw::popPattern()函数是PHP中的内置函数,用于终止包含要应用的设计的模式定义。

用法:

bool ImagickDraw::popPattern( void )

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


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

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

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

程序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(); 
  
// Push the pattern 
$draw->pushPattern("MyPattern", 0, 0, 50, 50); 
for ($x = 0; $x < 50; $x += 10) { 
    for ($y = 0; $y < 50; $y += 5) { 
        $X = $x + (($y / 10) % 10); 
        $draw->rectangle($X, $y, $X + 5, $y + 5); 
    } 
} 
  
// Pop the pattern 
$draw->popPattern(); 
  
// Set the fill Opacity 
$draw->setFillOpacity(0); 
  
// Set the fill pattern URL 
$draw->setFillPatternURL('#MyPattern'); 
  
// Draw a rectangle 
$draw->rectangle(0, 0, 900, 900); 
  
// 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(); 
  
// Push the pattern 
$draw->pushPattern("MyPattern", 0, 0, 50, 50); 
for ($x = 0; $x < 50; $x += 10) { 
    for ($y = 0; $y < 50; $y += 5) { 
        $X = $x + (($y / 10) % 10); 
        $draw->circle($X, $y, $X, $y +1); 
    } 
} 
  
// Pop the pattern 
$draw->popPattern(); 
// Set the fill Opacity 
$draw->setFillOpacity(0); 
  
// Set the fill pattern URL 
$draw->setFillPatternURL('#MyPattern'); 
  
// Draw a rectangle 
$draw->rectangle(0, 0, 900, 900); 
  
// 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.poppattern.php



相关用法


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