Binita's code to Hexagon

hexagon

SLAVE CODE FOLLOWS

<?php
header
("Content-type: image/png"); // Make sure the correct MIME type is set

// Your image creation code goes here
// Example: create a simple PNG image
$image imagecreate(200200);
$bgColor imagecolorallocate($image238238238);  // background color
$color imagecolorallocate($image00255);  // blue for hexagon

// Define hexagon coordinates
$hexagon = array(5050150501751001501505015025100);
$pts count($hexagon) / 2;

// Draw the hexagon and fill it
imagepolygon($image$hexagon$pts$color);
imagefilledpolygon($image$hexagon$pts$color);

// Output the image
imagepng($image);

// Clean up
imagedestroy($image);

?>