📜  PHP | imagickdraw getStrokeLineJoin()函数

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

PHP | imagickdraw getStrokeLineJoin()函数

ImagickDraw::getStrokeLineJoin()函数是PHP中的一个内置函数,用于获取路径在被描边时在拐角处使用的形状。这通常会影响笔画的外边缘和转弯。

句法:

int ImagickDraw::getStrokeLineJoin( void )

参数:此函数不接受任何参数。

返回值:此函数返回对应于 LINEJOIN 常量之一的整数值。

LINEJOIN 常量列表如下:

  • imagick::LINEJOIN_UNDEFINED (0)
  • imagick::LINEJOIN_MITER (1)
  • imagick::LINEJOIN_ROUND (2)
  • imagick::LINEJOIN_BEVEL (3)

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

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

方案一:

getStrokeLineJoin();
echo $lineJoin;
?>

输出:

1 // Which corresponds to imagick::LINEJOIN_MITER

方案二:

setStrokeLineJoin(3);
  
// Get the stroke line join
$lineJoin = $draw->getStrokeLineJoin();
echo $lineJoin;
?>

输出:

3 // Which corresponds to imagick::LINEJOIN_BEVEL

方案 3:

newImage(800, 250, 'white');
    
// Create a new ImagickDraw object
$draw = new ImagickDraw();
    
// Set the fill color
$draw->setFillColor('white');
    
// Set the color of stroke
$draw->setStrokeColor('blue');
  
// Set the stroke width
$draw->setStrokeWidth(4);
    
// Set the font size
$draw->setFontSize(25);
   
 // Set the stroke dash array
$draw->setStrokeDashArray([20]);
   
// Draw a rectangle
$draw->rectangle(100, 50, 225, 175);
    
// Annotate a text
$draw->annotation(10, 220, 'The strokeLineJoin here is '
        . $draw->getStrokeLineJoin());
   
// Set the stroke line join
$draw->setStrokeLineJoin(2);
    
// Draw a rectangle
$draw->rectangle(500, 50, 625, 175);
    
// Annotate a text
$draw->annotation(400, 220, 'The strokeLineJoin here is '
        . $draw->getStrokeLineJoin());
    
// 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.getstrokelinejoin。 PHP