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


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


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

用法:

bool ImagickDraw::setStrokeDashArray( array $dashArray )

参数:该函数接受单个参数$dashArray,该参数保存笔划破折号。


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

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

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

程序1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the stroke dash array 
$draw->setStrokeDashArray([80, 5, 2, 5, 15, 51, ]); 
  
// Get the stroke dash array 
$array = $draw->getStrokeDashArray(); 
print("<pre>".print_r($array, true)."</pre>"); 
?>

输出:

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

程序2:

<?php 
   
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->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



相关用法


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