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
Set font
<html>
<body>
<?php
$img=ImageCreate(300,300);
$bgcolor=ImageColorAllocate($img,200,200,200);
$red=ImagecolorAllocate($img,255,0,0);
$green=ImagecolorAllocate($img,0,255,0);
$blue=ImagecolorAllocate($img,0,0,255);
$grey=ImagecolorAllocate($img,50,50,50);
$black=ImagecolorAllocate($img,0,0,0);
for($i=0;$i<10;$i++) {
ImageChar($img,$i,20,20+($i*20),"S",$red);
$height[]=Imagefontheight($i);
$width[]=Imagefontwidth($i);
}
/*
RGB Red = 0..255 , Green = 0..255 , Blue = 0..255.
*/
ImageSetPixel($img,50,50,$pixelcolor);
ImagePNG($img,"pic.png");
ImageDestroy($img);
for ($i=0;$i<10;$i++) {
echo "font ".$i." height=".$height[$i]."<br>";
}
?>
<img src="pic.png" border=0>
</body>
</html>