PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html.
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/.
or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site
Drawing Polygons Using imagepolygon()
$points array accepted by the imagepolygon() function is of the following format
<?php
define("WIDTH", 100);
define("HEIGHT", 100);
$img = imagecreate(WIDTH, HEIGHT);
$white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
$black = Imagecolorallocate($img, 0, 0, 0);
$points = array(0, 0, // Vertex (0,0)
0, HEIGHT, // Vertex (0, HEIGHT)
(int)WIDTH/2, 0, // Vertex (WIDTH/2, 0)
WIDTH-1, HEIGHT-1, // Vertex (WIDTH, HEIGHT)
WIDTH-1, 0); // Vertex (WIDTH, 0)
imagepolygon($img, $points, 5, $black);
header("Content-type: image/png");
imagepng($img);
?>