La función ImagickDraw::pathCurveToQuadraticBezierSmoothRelative() es una función incorporada en PHP que se usa para dibujar una curva Bezier cuadrática (usando coordenadas relativas) desde el punto actual hasta (x, y).
Sintaxis:
bool ImagickDraw::pathCurveToQuadraticBezierSmoothRelative( float $x, float $y )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $x: Especifica la coordenada x final.
- $y: especifica la coordenada y final.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función ImagickDraw::pathCurveToQuadraticBezierSmoothRelative() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'black'); // Create a new ImagickDraw object $draw = new ImagickDraw(); $draw->setFillColor('black'); // Set the stroke color $draw->setStrokeColor('brown'); // Draw curves to Quadratic Bezier Smooth Relative (without pathClose()) $draw->pathStart(); $draw->pathCurveToQuadraticBezierSmoothRelative(950, 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:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'black'); // Create a new ImagickDraw object $draw = new ImagickDraw(); $draw->setFillColor('black'); // Set the stroke color $draw->setStrokeColor('pink'); // Draw curves to Quadratic Bezier Smooth Relative (with pathClose()) $draw->pathStart(); $draw->pathCurveToQuadraticBezierSmoothRelative(3950, 250); $draw->pathCurveToQuadraticBezierSmoothRelative(950, 250); $draw->pathCurveToQuadraticBezierSmoothRelative(-2000, 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:
Referencia: https://www.php.net/manual/en/imagickdraw.pathcurvetoquadraticbeziersmoothrelative.php