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
Creating and Applying Different Shapes and Patterns
<?php
$animage = imagecreate (500, 500);
$white = imagecolorallocate ($animage, 255, 255, 255);
$black = imagecolorallocate ($animage, 0, 0, 0);
imagefilledrectangle ($animage, 0, 0, 500, 500, $black);
$blue = imagecolorallocate ($animage, 0, 0, 255);
$green = imagecolorallocate ($animage, 0, 255, 0);
$myvalues = array ("1","2","3","4","5","6");
$barwidth = (int) (500 / ((count ($myvalues) * 2)+ 1));
$barheightpernum = (int) (500 / 10);
imagefilledrectangle ($animage, 1, 300,498, $black);
imagepng ($animage);
header ("Content-type: image/png");
imagedestroy ($animage);
?>