📜  PHP | imagickdraw setStrokePatternURL()函数

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

PHP | imagickdraw setStrokePatternURL()函数

ImagickDraw::setStrokePatternURL()函数是PHP中的一个内置函数,用于设置用于描边对象轮廓的模式。

句法:

bool ImagickDraw::setStrokePatternURL( string $stroke_url )

参数:此函数接受单个参数$stroke_url ,其中包含笔划图案的 URL。

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

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

程序 1:在这个程序中,我们将创建一个带有设计轮廓的矩形。

newImage(800, 250, 'black');
  
// Create a new imagickDraw object
$draw = new ImagickDraw();
  
// Push the pattern
$draw->pushPattern("MyPattern", 0, 0, 50, 50);
$color = ['red', 'black', 'cyan'];
  
for ($x = 0; $x < 50; $x += 10) {
    for ($y = 0; $y < 50; $y += 5) {
        $draw->setFillColor($color[$y % 3]);
        $draw->circle($x, $y + 80, $x % 2, $y);
    }
}
  
// Pop the pattern
$draw->popPattern();
  
// Set the stroke pattern URL
$draw->setStrokePatternURL('#MyPattern');
  
// Set the stroke width
$draw->setStrokeWidth(10);
  
// Draw a rectangle on which pattern is made
$draw->rectangle(200, 50, 500, 200);
  
// Render the draw commands
$imagick->drawImage($draw);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

程序 2:在这个程序中,我们将创建一个带有设计轮廓的圆圈。

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) { 
        $draw->setFillColor('green');
        $draw->rectangle($x, $y + 10, $x % 5, $y); 
    } 
} 
  
// Pop the pattern
$draw->popPattern();
  
// Set the stroke pattern URL
$draw->setStrokePatternURL('#MyPattern');
  
// Set the stroke width
$draw->setStrokeWidth(10);
  
// Draw a circle
$draw->circle(300, 100, 350, 20);
  
// 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.setstrokepatternurl。 PHP