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


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


ImagickDraw::setStrokeDashOffset()函数是PHP中的内置函数,用于将偏移量设置为破折号模式以开始破折号。

用法:

bool ImagickDraw::setStrokeDashOffset( float $dash_offset )

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


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

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

以下示例程序旨在说明PHP中的ImagickDraw::setStrokeDashOffset()函数:

程序1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
   
// Set the stroke dash offset 
$draw->setStrokeDashOffset(5); 
   
// Get the stroke dash offset 
$offset = $draw->getStrokeDashOffset(); 
echo $offset; 
?>

输出:

5

程序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('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



相关用法


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