PHP GD PNG Images and Texts
PHP GD is a library that lets you use PHP to create GIF, JPG and PNG imagesInstall
CentOS PHP GD install instructions# yum install php-gd
# service httpd reload
# service httpd reload
Bitmap Font
$font=3;
imagestring($im, $font, $x, $y, $s, $colour);
imagestring($im, $font, $x, $y, $s, $colour);
TrueType Font
$font='./liberation.ttf';
imagettftext($im, 11, 0, $x, $y, $colour, $font, $s);
imagettftext($im, 11, 0, $x, $y, $colour, $font, $s);
REFERRERS
PHP