📜  PHP | imagickdraw setStrokeDashOffset()函数

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

PHP | imagickdraw setStrokeDashOffset()函数

ImagickDraw::setStrokeDashOffset()函数是PHP中的一个内置函数,用于设置虚线模式的偏移量以启动虚线。

句法:

bool ImagickDraw::setStrokeDashOffset( float $dash_offset )

参数:此函数接受单个参数$dash_offset保存破折号偏移量。

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

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

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

方案一:

setStrokeDashOffset(5);
   
// Get the stroke dash offset
$offset = $draw->getStrokeDashOffset();
echo $offset;
?>

输出:

5

方案二:

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('white');
   
 // Set the stroke dash array
$draw->setStrokeDashArray([15, 5, 15]);
  
// Set the stroke dash offset
$draw->setStrokeDashOffset(20);
    
// Draw a circle using ellipse function
$draw->ellipse(400, 100, 70, 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.setstrokedashoffset。 PHP