La función ImagickDraw::pathCurveToRelative() es una función incorporada en PHP que se usa para dibujar una curva Bezier cúbica desde el punto actual hasta (x, y) usando (x1, y1) como el punto de control al comienzo de la curva y (x2, y2) como punto de control al final de la curva usando coordenadas relativas.
Sintaxis:
bool ImagickDraw::pathCurveToRelative( float $x1, float $y1, float $x2, float $y2, float $x, float $y )
Parámetros: esta función acepta seis parámetros, como se mencionó anteriormente y se describe a continuación:
- $x1: Especifica la coordenada x del punto de control inicial.
- $y1: especifica la coordenada y del punto de control inicial.
- $x2: Especifica la coordenada x del punto de control final.
- $y2: especifica la coordenada y del punto de control final.
- $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::pathCurveToRelative() 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('white'); // Draw curves to Quadratic Bezier Relative (without pathClose()) $draw->pathStart(); $draw->pathCurveToRelative(50, 250, 900, 20, 100, 300); $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('white'); // Draw curves to Quadratic Bezier Relative (with pathClose()) $draw->pathStart(); $draw->pathCurveToRelative(50, 250, 1900, 20, 100, 300); $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.pathcurvetorelative.php