La función ImagickDraw::pathCurveToQuadraticBezierAbsolute() es una función incorporada en PHP que se usa para dibujar una curva Bezier cuadrática que no es más que una curva cuadrática paramétrica.
Sintaxis:
bool ImagickDraw::pathCurveToQuadraticBezierAbsolute( float $x1, float $y1, float $x, float $y )
Parámetros: esta función acepta cuatro parámetros, como se mencionó anteriormente y se describe a continuación:
- $x1: Especifica la coordenada x del punto de control.
- $y1: Especifica la coordenada y del punto de control.
- $x: especifica la coordenada x del punto final.
- $y: especifica la coordenada y del punto final.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Los siguientes programas ilustran la función ImagickDraw::pathCurveToQuadraticBezierAbsolute() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'white'); // Create a new ImagickDraw object $draw = new ImagickDraw(); $draw->setFillColor('white'); // Set the stroke color $draw->setStrokeColor('red'); // Draw curve to Quadratic Bezier Absolute (with pathClose()) $draw->pathStart(); $draw->pathCurveToQuadraticBezierAbsolute(150, 250, 950, 250); $draw->pathClose(); $draw->pathFinish(); // Render the draw commands $imagick->drawImage($draw); // Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'white'); // Create a new ImagickDraw object $draw = new ImagickDraw(); $draw->setFillColor('white'); // Set the stroke color $draw->setStrokeColor('blue'); // Draw curve to Quadratic Bezier Absolute (without pathClose()) $draw->pathStart(); $draw->pathCurveToQuadraticBezierAbsolute(350, 250, 750, 250); $draw->pathFinish(); // Render the draw commands $imagick->drawImage($draw); // Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagickdraw.pathcurvetoquadraticbezierabsolute.php