But it's not working, here is the not-working signature,and here is the code:
CODE
<?php
Header ('Content-type: image/jpeg');
$counterfile = "counter.html";
$fo = fopen($counterfile, 'r'); or die("Error");
$count = fread($fo, filesize($counterfile));
fclose($fo);
echo $count;
$font = ('verdana.ttf');
$im = imagecreatefromjpeg('back.jpg');
$blue = imagecolorallocate($im, 255,255,255);
imagettftext($im, 9, 0, 4, 12, $blue, $font,"count". $count);
imagepng($im);
imagedestroy($im);
?>
Header ('Content-type: image/jpeg');
$counterfile = "counter.html";
$fo = fopen($counterfile, 'r'); or die("Error");
$count = fread($fo, filesize($counterfile));
fclose($fo);
echo $count;
$font = ('verdana.ttf');
$im = imagecreatefromjpeg('back.jpg');
$blue = imagecolorallocate($im, 255,255,255);
imagettftext($im, 9, 0, 4, 12, $blue, $font,"count". $count);
imagepng($im);
imagedestroy($im);
?>
and my host can host dynamic signatures, and I uploaded the font, the background and the .htaccess file, in the same directory..
So where is the error?