PHP | Función imagenllenadapolígono()

La función imagefilledpolygon() es una función incorporada en PHP que se usa para dibujar un polígono relleno. Esta función devuelve VERDADERO en caso de éxito y devuelve FALSO en caso contrario.
Sintaxis: 

bool imagefilledpolygon( $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 imagefilledpolygon() 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)
        );
  
// It create the size of image or blank image.
$image = imagecreatetruecolor(300, 300);
  
// Set image background color
$bg   = imagecolorallocate($image, 255, 255, 255);
 
// Set image color
$gr = imagecolorallocate($image, 0, 153, 0);
  
// fill the background
imagefilledrectangle($image, 0, 0, 300, 300, $bg);
  
// Draw the polygon
imagefilledpolygon($image, $values, 3, $gr);
  
// Output of the image.
header('Content-type: image/png');
imagepng($image);
?>

Producción: 
 

Imagefilledcolor function

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)
            );
  
// It create the size of image or blank image.
$image = imagecreatetruecolor(300, 300);
  
// Set image background color
$bg   = imagecolorallocate($image, 255, 255, 255);
 
// Set image color
$blue = imagecolorallocate($image, 0, 153, 0);
  
// fill the background
imagefilledrectangle($image, 0, 0, 300, 300, $bg);
  
// Draw the polygon
imagefilledpolygon($image, $values, 5, $blue);
  
// Output of the image.
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>

Producción: 
 

imagefilledcolor

Artículos relacionados: 

Referencia: http://php.net/manual/en/function.imagefilledpolygon.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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *