📜  PHP | GmagickDraw bezier()函数

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

PHP | GmagickDraw bezier()函数

GmagickDraw::bezier()函数是PHP中的一个内置函数,用于绘制贝塞尔曲线。

句法:

GmagickDraw GmagickDraw::bezier( array $coordinate_array )

参数:此函数接受单个参数$coordinate_array ,该参数保存多维数组,该数组采用要通过的点来制作曲线。

返回值:此函数在成功时返回 GmagickDraw 对象。

异常:此函数在出错时抛出 GmagickDrawException。
使用的图像:捕获画布区域。

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

程序 1:简单贝塞尔曲线

setFillColor('#0E0E0E');
  
// Function to draw rectangle
$draw->rectangle(-10, -10, 800, 400);
  
// Set the fill color
$draw->setFillColor('#3D99D4');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Draw the curve
$draw->bezier([
    ['x' => 10, 'y' => 10],
    ['x' => 0, 'y' => 0],
    ['x' => 620, 'y' => 0],
    ['x' => 550, 'y' => 170],
]);
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

程序 2:带有描边和填充的贝塞尔曲线

setFillColor('#0E0E0E');
  
// Function to draw rectangle
$draw->rectangle(-10, -10, 800, 400);
  
// Set the fill color
$draw->setFillColor('yellow');
  
// Set the stroke color
$draw->setstrokecolor('purple');
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Draw the curve
$draw->bezier([
    ['x' => 10, 'y' => 10],
    ['x' => 0, 'y' => 150],
    ['x' => 620, 'y' => 0],
    ['x' => 550, 'y' => 170],
]);
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagickdraw.bezier。 PHP