Maison > Article > développement back-end > Comment dessiner un polygone rempli en utilisant la fonction imagefilledpolygon() en PHP ?
imagefilledpolygon() est une fonction PHP intégrée pour dessiner des polygones remplis.
bool imagefilledpolygon($image, $points, $num_points, $color)
imagefilledpolygon() prend quatre paramètres différents - $image, $points, $ num_points et $color.
$Image - Crée une image vierge de dimensions données à l'aide de la fonction imagecreatetruecolor().
$points - Enregistre les sommets consécutifs d'un polygone.
$num_points - Contient le nombre total de sommets dans le polygone. Le nombre total de points/sommets doit être d'au moins trois pour créer un polygone.
$color - Contient des identifiants de couleur renseignés à l'aide de la fonction imagecolorallocate().
Renvoie True en cas de succès et False en cas d'échec.
<?php // set up array of points for a polygon $values = array( 40, 50, // Point 1 (x, y) 20, 240, // Point 2 (x, y) 60, 60, // Point 3 (x, y) 240, 20, // Point 4 (x, y) 50, 40, // Point 5 (x, y) 10, 10 // Point 6 (x, y) ); // create the image using imagecreatetruecolor function $img = imagecreatetruecolor(700, 350); // allocated the blue and gray colors $bg = imagecolorallocate($img, 122, 122, 122); $blue = imagecolorallocate($img, 0, 0, 255); // filled the background imagefilledrectangle($img, 0, 0, 350, 350, $bg); // draw a polygon imagefilledpolygon($img, $values, 6, $blue); // flush image header('Content-type: image/png'); imagepng($img); imagedestroy($img); ?>
<?php // Set the vertices of the 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 creates the size of the image or blank image. $img = imagecreatetruecolor(700, 350); // Set the gray background image color $bg = imagecolorallocate($img, 122, 122, 122); // Set the red image color $red = imagecolorallocate($img, 255, 0, 0); // fill the background imagefilledrectangle($img, 0, 0, 350, 350, $bg); // Draw the polygon image imagefilledpolygon($img, $values, 5, $red); // Output of the image. header('Content-type: image/png'); imagepng($img); imagedestroy($img); ?>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!