<?php
header("Content-type: image/png");
$im = @imagecreatefrompng( 'countdown-data/LBPcount.png' )
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 0, 0, 225);
$finish = strtotime( "29 october 2008" );
$seconds = $finish - time(); // current timestamp
$days = (int)$seconds/(3600*24);
$days = number_format($days, 0);
$font = 2;
imagestring($im, 2, 70, 33, $days, $text_color, $font);
imagepng($im);
imagedestroy($im);
?>
And this is the result (no number is shown)..
http://www.kingps3.com/LBPset.php