La función ImagickDraw::ellipse() es una función incorporada en PHP que se usa para dibujar una elipse en la imagen.
Sintaxis:
bool ImagickDraw::ellipse( float $ox, float $oy, float $rx, float $ry, float $start, float $end )
Parámetros: esta función acepta seis parámetros, como se mencionó anteriormente y se describe a continuación:
- $ox: Especifica la coordenada x de la elipse.
- $oy: Especifica la coordenada y de la elipse.
- $rx: Especifica el radio x de la elipse.
- $ry: Especifica el radio y de la elipse.
- $start: Especifica el punto de inicio de la elipse.
- $fin: Especifica el punto final de la elipse.
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::ellipse() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'purple'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Draw a ellipse $draw->ellipse(125, 70, 100, 50, 0, 360); // 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, 'brown'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Draw a black ellipse $draw->ellipse(400, 120, 200, 100, 0, 360); // Set the FillColor to green $draw->setFillColor('green'); // Draw a green ellipse $draw->ellipse(400, 120, 150, 90, 0, 360); // 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.ellipse.php