La función imagepolygon() es una función incorporada en PHP que se usa para dibujar un polígono. Esta función devuelve VERDADERO en caso de éxito y devuelve FALSO en caso contrario.
Sintaxis:
bool imagepolygon( $image, $points, $num_points, $color )
Parámetros: esta función acepta cuatro 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.
- $puntos: este parámetro se usa para contener los vértices consecutivos del polígono.
- $num_points: este parámetro contiene el número total de vértices en un polígono. Debe ser mayor que 3, porque se requieren un mínimo de tres vértices para crear un polígono.
- $color: esta variable contiene el identificador de color relleno. Un identificador de color creado con la función 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 imagepolygon() en PHP.
Programa 1:
php
<?php // Set the vertices of polygon $values = array( 150, 50, // Point 1 (x, y) 50, 250, // Point 2 (x, y) 250, 250 // Point 3 (x, y) ); // Create the size of image or blank image $image = imagecreatetruecolor(300, 300); // Set the background color of image $background_color = imagecolorallocate($image, 0, 153, 0); // Fill background with above selected color imagefill($image, 0, 0, $background_color); // Allocate a color for the polygon $image_color = imagecolorallocate($image, 255, 255, 255); // Draw the polygon imagepolygon($image, $values, 3, $image_color); // Output the picture to the browser header('Content-type: image/png'); imagepng($image); ?>
Producción:
Programa 2:
php
<?php // Set the vertices of polygon $values = array( 150, 50, // Point 1 (x, y) 55, 119, // Point 2 (x, y) 91, 231, // Point 3 (x, y) 209, 231, // Point 4 (x, y) 245, 119 // Point 5 (x, y) ); // Create the size of image or blank image $image = imagecreatetruecolor(300, 300); // Set the background color of image $background_color = imagecolorallocate($image, 0, 153, 0); // Fill background with above selected color imagefill($image, 0, 0, $background_color); // Allocate a color for the polygon $col_poly = imagecolorallocate($image, 255, 255, 255); // Draw the polygon imagepolygon($image, $values, 5, $col_poly); // Output the picture to the browser header('Content-type: image/png'); imagepng($image); ?>
Producción:
Artículos relacionados:
- PHP | Función imagenllenadapolígono()
- PHP | función imageellipse()
- PHP | Función imagenllenadaellipse()
Referencia: http://php.net/manual/en/function.imagepolygon.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