Edit: fixed it by generating sigs every 10 min... "Unable to retrieve signature image dimensions, please try another image." Dafuq is this? I get this when I try to put the image in my signature... Halp anyone plz? (/care about the text atm) http://www.flamezzz.nl/signature.png?user=flamezzz&script=fcluehuntereasy Dimensions = 500x150, even windows can read this so I assume the file is not corrupt in any way. signature.php
<?
Header('Content-type: image/png');
.....
.....
$image = @imagecreatefrompng('./cluehuntereasy.png') or die("Picture not found.");
$black = imagecolorallocate($image, 0, 0, 0);
$white = imagecolorallocate($image, 255, 255, 255);
imagecolortransparent($image, $black);
imagealphablending($image, false);
imagesavealpha($image, true);
.....
.....
imagettftext($image, 15, 0, 370, 58, $white, $font, $row['solved']);
imagettftext($image, 15, 0, 370, 107, $white, $font, $runtime);
imagettftext($image, 15, 0, 370, 153, $white, $font, $profit);
imagettftext($image, 20, 0, 50, 153, $white, $font, $row['name']);
imagepng($image);
imagedestroy($image);
mysql_close();
?>