📜  PHP | imagickdraw pushPattern()函数

📅  最后修改于: 2022-05-13 01:56:23.037000             🧑  作者: Mango

PHP | imagickdraw pushPattern()函数

ImagickDraw::pushPattern()函数是PHP中的一个内置函数,用于包含命名模式的定义。 pushPattern()popPattern()之间的一切都是模式的定义。

句法:

bool ImagickDraw::pushPattern( string $pattern_id, 
      float $x, float $y, float $width, float $height )

参数:该函数接受上面提到的五个参数,如下所述:

  • $pattern_id:指定模式的唯一名称
  • $x:指定左上角的 x 坐标。
  • $y:指定左上角的 y 坐标。
  • $width:指定图案的宽度。
  • $height:指定图案的高度。

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

异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::pushPattern()函数
方案一:

newImage(800, 250, 'white');
  
// Create a new imagickDraw object
$draw = new ImagickDraw();
  
// Push the pattern
$draw->pushPattern("MyPattern", 0, 0, 50, 50);
$color = ['red', 'green', 'blue'];
for ($x = 0; $x < 50; $x += 10) {
    for ($y = 0; $y < 50; $y += 5) {
        $draw->setFillColor($color[$y % 3]);
        $draw->rectangle($x % 5, $y + 1, $x, $y + 50);
    }
}
// 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();
?>

输出:

方案二:

newImage(800, 250, 'white');
  
// Create a new imagickDraw object
$draw = new ImagickDraw();
  
// Push the pattern
$draw->pushPattern("MyPattern", 0, 0, 50, 50);
$color = ['red', 'green', 'cyan'];
for ($x = 0; $x < 50; $x += 10) {
    for ($y = 0; $y < 50; $y += 5) {
        $draw->setFillColor($color[$y % 3]);
        $draw->circle($x % 2, $y + 100, $x, $y);
    }
}
// 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.pushpattern。 PHP