La función imageellipse() es una función incorporada en PHP que se usa para dibujar una elipse. Esta función devuelve VERDADERO en caso de éxito o FALSO en caso de error.
Sintaxis:
bool imageellipse( $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: lo devuelve una de las funciones de creación de imágenes, como imagecreatetruecolor(). Se utiliza para crear el tamaño de la imagen.
- $cx: coordenada x del centro.
- $cy: coordenada y del centro.
- $ancho: El ancho de la elipse.
- $height: La altura de la elipse.
- $color: Establece el color de la elipse. Un identificador de color creado por la función imagecolorallocate().
Valor devuelto: Devuelve VERDADERO en caso de éxito o FALSO en caso de fallo.
Los siguientes programas ilustran la función imageellipse() en PHP:
Programa 1:
<?php // It create the size of image or blank image. $image_size = imagecreatetruecolor(500, 300); // Set the background color of image. $background_color = imagecolorallocate($image_size, 255, 255, 255); // Fill background with above selected color. imagefill($image_size, 0, 0, $background_color); // set color of ellipse. $ellipse_color = imagecolorallocate($image_size, 0, 0, 0); // Function to draw the ellipse. imageellipse($image_size, 250, 150, 400, 250, $ellipse_color); // Output the image. header("Content-type: image/png"); imagepng($image_size); ?>
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, 0, 102, 0); // Fill background with above selected color. imagefill($image, 0, 0, $bg); // set color of ellipse. $col_ellipse = imagecolorallocate($image, 255, 255, 255); // Function to draw the ellipse. imageellipse($image, 150, 250, 250, 400, $col_ellipse); // Output the image. header("Content-type: image/png"); imagepng($image); ?>
Producción:
Referencia: http://php.net/manual/en/function.imageellipse.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