La función ImagickDraw::pathEllipticArcRelative() es una función incorporada en PHP que se usa para dibujar un arco elíptico desde el punto actual hasta (x, y) usando coordenadas relativas.
Sintaxis:
bool ImagickDraw::pathEllipticArcRelative( float $rx, float $ry, float $x_axis_rotation, bool $large_arc_flag, bool $sweep_flag, float $x )
Parámetros: esta función acepta siete parámetros, como se mencionó anteriormente y se describe a continuación:
- $rx: Especifica el radio x.
- $ry: Especifica el radio y
- $x_axis_rotation: Especifica la rotación del eje x
- $large_arc_flag: Especifica si dibujar el mayor de los arcos disponibles.
- $sweep_flag: especifica si se debe dibujar el arco que coincida con una rotación en el sentido de las agujas del reloj.
- $x: Especifica la coordenada x.
- $y: Especifica la coordenada y.
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::pathEllipticArcRelative() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, '#7441e0'); // Create a new ImagickDraw object $draw = new ImagickDraw(); $draw->setFillColor('#2fceeb'); // Set the stroke color $draw->setStrokeColor('#c27230'); // Set the stroke width $draw->setStrokeWidth(15); // Draw elliptic arc $draw->pathStart(); $draw->pathEllipticArcRelative(120, 9250, 210, false, true, 300, 400); $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, '#7441e0'); // Create a new ImagickDraw object $draw = new ImagickDraw(); $draw->setFillColor('#2fceeb'); // Set the stroke color $draw->setStrokeColor('#c27230'); // Set the stroke width $draw->setStrokeWidth(15); // Draw elliptic arc $draw->pathStart(); $draw->pathEllipticArcRelative(120, 50, 10, true, true, 300, 400); $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.pathellipcarrelative.php