📜  PHP | imagickdraw setStrokeDashArray()函数

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

PHP | imagickdraw setStrokeDashArray()函数

ImagickDraw::setStrokeDashArray()函数是PHP中的一个内置函数,用于设置用于描边路径的虚线和间隙的模式。在奇数个值的情况下,重复值列表以产生偶数个值。要删除现有的 dash 数组,请传递零 number_elements 参数或 null dash_array。

句法:

bool ImagickDraw::setStrokeDashArray( array $dashArray )

参数:此函数接受单个参数$dashArray ,其中包含笔划破折号。

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

异常:此函数在出错时抛出 ImagickException。

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

方案一:

setStrokeDashArray([80, 5, 2, 5, 15, 51, ]);
  
// Get the stroke dash array
$array = $draw->getStrokeDashArray();
print("
".print_r($array, true)."
"); ?>

输出:

Array
(
    [0] => 80
    [1] => 5
    [2] => 2
    [3] => 5
    [4] => 15
    [5] => 51
)

方案二:

newImage(800, 250, 'black');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the fill color
$draw->setFillColor('black');
  
// Set the color of stroke
$draw->setStrokeColor('cyan');
  
// Set the stroke dash array
$draw->setStrokeDashArray([2, 1, 3]);
  
// Draw a ellipse
$draw->ellipse(400, 100, 150, 70, 60, 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.setstrokedasharray。 PHP