GmagickDraw::bezier()函数是PHP中的一个内置函数,用于绘制贝塞尔曲线。
用法:
GmagickDraw GmagickDraw::bezier( array $coordinate_array )
参数:该函数接受单个参数$coordinate_array,该参数保存多维数组,该多维数组采用要通过其绘制曲线的点。
返回值:成功时,此函数返回GmagickDraw对象。
异常:该函数在错误时引发GmagickDrawException。
使用的图片:捕获画布区域。
下面给出的程序说明了PHP中的GmagickDraw::bezier()函数:
程序1:简单贝塞尔曲线
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->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:带有笔触和填充的贝塞尔曲线
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->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
相关用法
- p5.js bezier()用法及代码示例
- PHP ImagickDraw bezier()用法及代码示例
- CSS cubic-bezier()用法及代码示例
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw setfontweight()用法及代码示例
- PHP GmagickDraw settextdecoration()用法及代码示例
- PHP GmagickDraw setfillopacity()用法及代码示例
- PHP GmagickDraw setstrokecolor()用法及代码示例
- PHP GmagickDraw setfontstyle()用法及代码示例
- PHP GmagickDraw rectangle()用法及代码示例
- PHP GmagickDraw setstrokewidth()用法及代码示例
- PHP GmagickDraw setstrokeopacity()用法及代码示例
- PHP GmagickDraw getstrokeopacity()用法及代码示例
- PHP GmagickDraw line()用法及代码示例
- PHP GmagickDraw getfontsize()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | GmagickDraw bezier() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。