Can someone help me change the font to this to some other one..
I want that instead of looking like thatPHP Code:<?php
header("Content-type: image/png");
$string = $_GET['text'];
$im = imagecreatefrompng("images/blank.PNG");
$black = imagecolorallocate($im, 182, 210, 60);
$px = (imagesx($im) - 5 * strlen($string)) / 2;
imagestring($im, 2, 15, 2, $string, $textcolor);
imagepng($im);
imagedestroy($im);
?>
to look like this
![]()


LinkBack URL
About LinkBacks








Reply With Quote




