La función imagefilledellipse() es una función incorporada en PHP que se utiliza para dibujar la elipse rellena. Dibuja la elipse con la coordenada central especificada .
Sintaxis:
bool imagefilledellipse( $image, $cx, $cy, $width, $height, $color )
Parámetros: esta función acepta seis parámetros, como se mencionó anteriormente y se describe a continuación:
- $imagen: la función imagecreatetruecolor() se usa para crear una imagen en blanco en un tamaño determinado.
- $cx: coordenada x del centro.
- $cy: coordenada y del centro.
- $ancho: El ancho de la elipse.
- $height: La altura de la elipse.
- $color: El color de relleno. Un identificador de color creado con imagecolorallocate().
Valor devuelto: esta función devuelve VERDADERO en caso de éxito o FALSO en caso de error.
Los siguientes programas ilustran la función imagefilledellipse() en PHP.
Programa 1:
<?php // It create the size of image or blank image. $image = imagecreatetruecolor(500, 300); // Set the background color of image. $bg = imagecolorallocate($image, 205, 220, 200); // Fill background with above selected color. imagefill($image, 0, 0, $bg); // Set the color of an ellipse. $col_ellipse = imagecolorallocate($image, 0, 102, 0); // Function to draw the filled ellipse. imagefilledellipse($image, 250, 150, 400, 250, $col_ellipse); // Output of the image. header("Content-type: image/png"); imagepng($image); ?>
Producción:
Programa 2:
<?php // It create the size of image or blank image. $image = imagecreatetruecolor(300, 500); // Set the background color of image. $bg = imagecolorallocate($image, 205, 220, 200); // Fill background with above selected color. imagefill($image, 0, 0, $bg); // set color of ellipse. $col_ellipse = imagecolorallocate($image, 0, 102, 0); // function to draw the filled ellipse with white color. imagefilledellipse($image, 150, 250, 250, 400, $col_ellipse); // output of the image. header("Content-type: image/png"); imagepng($image); ?>
Producción:
También puedes intentar hacer un círculo usando la misma función.
Artículo relacionado: PHP | función imageellipse()
Referencia: http://php.net/manual/en/function.imagefilledellipse.php
Publicación traducida automáticamente
Artículo escrito por Vishal_Khoda y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA