I just did this, and it works fine.
Goto
http://trippin.uni.cc/generator.php?text=retard=noxus and it loads it just fine in firefox3 AND IE7
Please note that you can change the text after the text=
And here's my code: I got it off a tutorial, but either way it works and there is the header line.
CODE
<?php
header('Content-type: image/png');
$text = $_GET['text'];
$im = imagecreatefrompng ("userbar.png");
if($text == "ADMINISTRATOR"){ //if administrator
$color = imagecolorallocate($im, 255, 0, 0); //red
}
elseif($text == "MODERATOR"){ //if moderator
$color = imagecolorallocate($im, 0, 0, 255); //blue
}
elseif($text == "JUNKIE"){ //if junkie
$color = imagecolorallocate($im, 0, 0, 0); //black
}
else { //something else...
$color = imagecolorallocate($im, 0, 128, 0); //green
}
$font = 'font.ttf'; //font file
$fontsize = 26; //font size
$stringsize = imagettfbbox($fontsize, 0, $font, $text); //calculate the pixel of the string
$dx = (imagesx($im)) - (abs($stringsize[2]-$stringsize[0])) - 130; //calculate the location to start the text
imagettftext($im, $fontsize, 0, $dx, 33, $color, $font, $text);
imagepng($im);
imagedestroy($im);
?>
Please do research before you make accusations.
I would post a direct link to the image but zymic has disabled the ability to post dynamic links in the img tags... so suffer with viewing the page directly.