<?php
$str = $_GET['txt'];
$image = imagecreatefromjpeg('properdarkilscapeuserbar.jpg');
$color = imagecolorallocate($image, 0, 0, 0);
$font = 'fonts/VISITOR.FON';
$x = 310;
$y = 10;
$size = 15;
$rotation = 0;
imagettftext($image, $size, $rotation, $x, $y, $color, $font, $str);
header('Content-Type: image/jpg');
imagejpeg($image);
imagedestroy($image);
?>
You need to upload the font too.