Ahh!
Now I get an error on line 4 .......
Heres link -
http://darkilscape.hostoi.com/Real%20Darkilscape%20Userbar.PHPHeres code -
<?php
$str = $_GET['txt'];
$image = imagecreatefromjpg('realdarkilscapeuserbar.jpeg');
$color = imagecolorallocate($image, 0, 0, 0);
$font = 'fonts/VISITOR.FON';
$x = 275;
$y = 9;
$size = 15;
$rotation = 0;
imagefontext($image, $size, $rotation, $x, $y, $color, $font, $str);
heheader('Content-Type: image/jpeg');
imagepng($image);
imagedestroy($image);
?>
Note In Andrew Kaldas/Pictures - It says it's a JPEG Image, But when I uploaded to Photobucket it said it's a JPG Image. So I think code is wrong, Can you guys check it.