The GmagickDraw::bezier() function is an inbuilt function in PHP which is used to draw bezier curve.
Syntax:
GmagickDraw GmagickDraw::bezier( array $coordinate_array )
Parameters: This function accepts a single parameter $coordinate_array which holds the multidimensional array which takes the points through which curve is to be made.
Return Value: This function returns GmagickDraw object on success.
Exceptions: This function throws GmagickDrawException on error.
Used Image: To capture the canvas area.

Below given programs illustrate the GmagickDraw::bezier() function in PHP:
Program 1: Simple Bezier Curve
<?php
$gmagick = new Gmagick( 'geeksforgeeks.png' );
$draw = new GmagickDraw();
$draw ->setFillColor( '#0E0E0E' );
$draw ->rectangle(-10, -10, 800, 400);
$draw ->setFillColor( '#3D99D4' );
$draw ->setStrokeWidth(5);
$draw ->bezier([
[ 'x' => 10, 'y' => 10],
[ 'x' => 0, 'y' => 0],
[ 'x' => 620, 'y' => 0],
[ 'x' => 550, 'y' => 170],
]);
$gmagick ->drawImage( $draw );
header( "Content-Type: image/png" );
echo $gmagick ->getImageBlob();
?>
|
Output:

Program 2: Bezier curve with stroke and fill
<?php
$gmagick = new Gmagick( 'geeksforgeeks.png' );
$draw = new GmagickDraw();
$draw ->setFillColor( '#0E0E0E' );
$draw ->rectangle(-10, -10, 800, 400);
$draw ->setFillColor( 'yellow' );
$draw ->setstrokecolor( 'purple' );
$draw ->setStrokeWidth(5);
$draw ->bezier([
[ 'x' => 10, 'y' => 10],
[ 'x' => 0, 'y' => 150],
[ 'x' => 620, 'y' => 0],
[ 'x' => 550, 'y' => 170],
]);
$gmagick ->drawImage( $draw );
header( "Content-Type: image/png" );
echo $gmagick ->getImageBlob();
?>
|
Output:

Reference: https://www.php.net/manual/en/gmagickdraw.bezier.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
17 Jan, 2020
Like Article
Save Article