Może jakaś literówka. Musiałbyś pokazać może fragment skryptu. U mnie działa. Spójrz poniżej - to co mam u siebie tylko z twoim adresem:
<?php
/********************************************************
* Banner pogodowy
* Autor: Stacje-Pogody.pl
* WWW: http://stacje-pogody.pl
* Utworzone (dd-mm-rrrr): 08-05-2012
********************************************************
* Informacja o licencji: Skrypt jest darmowy
* License Information: This script is freeware
********************************************************/
$url='http://www.pogoda-choszczno.pl/webfiles/realtime.txt';
$realtime=@file_get_contents($url);
if(empty($realtime))
{
exit;
}
$pogoda=explode(' ',trim($realtime));
$symbol_temp=html_entity_decode('&#176;'.$pogoda['14']);
$symbol_stop=html_entity_decode('&#176;');
$tytul='Choszczno';
$tekst1='Temperatura: '.$pogoda['2'].$symbol_temp;
$tekst2='Temp. max: '.$pogoda['26'].$symbol_temp.' o '.$pogoda['27'];
$tekst3='Temp. min: '.$pogoda['28'].$symbol_temp.' o '.$pogoda['29'];
$tekst4='Temp. odczuwalna: '.$pogoda['24'].$symbol_temp;
$tekst5='Wilgotno¶ć: '.$pogoda['3'].'%';
$tekst6='Punkt rosy: '.$pogoda['4'].$symbol_temp;
$tekst7='Ci¶nienie: '.$pogoda['10'].$pogoda['15'].' '.$pogoda['18'];
$tekst8='Wiatr: '.$pogoda['6'].$pogoda['13'].' '.$pogoda['11'];
$tekst9='Wiatr porywy: '.$pogoda['40'].$pogoda['13'];
$tekst10='Deszcz: '.$pogoda['9'].$pogoda['16'];
$tekst11='Czas: '.$pogoda['0'].' '.$pogoda['1'];
header('Content-type: image/png');
$im=imagecreatefrompng('tlo.png');
$kolor['czarny'] = imagecolorallocate($im, 0,0,0);
$kolor['czerwony'] = imagecolorallocate($im,255,0,0);
$kolor['czerwony2'] = imagecolorallocate($im,162,64,51);
$kolor['zielony'] = imagecolorallocate($im,46,139,87);
$kolor['bialy'] = imagecolorallocate($im, 255,255,255);
$kolor['szary'] = imagecolorallocate($im, 197,216,221);
$kolor['niebieski'] = imagecolorallocate($im,205,21,133);
$kolor['zolty'] = imagecolorallocate($im,178,34,34);
$kolor['zolty2'] = imagecolorallocate($im,75,0,130);
$kolor['zolty3'] = imagecolorallocate($im,255,204,0);
$kolor['granat'] = imagecolorallocate($im,25,25,112);
$kolor['fiolet'] = imagecolorallocate($im,220,20,60);
$kolor['granat2'] = imagecolorallocate($im,0,0,205);
imagefilledrectangle( $im, 1 ,1, 185, 20 ,$kolor['granat']);
imagerectangle( $im, 0 ,0, 159, 244 ,$kolor['granat']);
imagerectangle( $im, 1 ,1, 158, 243 ,$kolor['granat']);
imagestring($im, 4, 5, 2, $tytul, $kolor['bialy']);
imagestring($im, 2, 5, 25, $tekst1, $kolor['czerwony']);
imagestring($im, 2, 5, 45, $tekst2, $kolor['fiolet']);
imagestring($im, 2, 5, 65, $tekst3, $kolor['granat2']);
imagestring($im, 2, 5, 85, $tekst4, $kolor['zielony']);
imagestring($im, 2, 5, 105, $tekst5, $kolor['zielony']);
imagestring($im, 2, 5, 125, $tekst6, $kolor['zielony']);
imagestring($im, 2, 5, 145, $tekst7, $kolor['niebieski']);
imagestring($im, 2, 5, 165, $tekst8, $kolor['zolty']);
imagestring($im, 2, 5, 185, $tekst9, $kolor['zolty']);
imagestring($im, 2, 5, 205, $tekst10, $kolor['zolty2']);
imagestring($im, 2, 5, 225, $tekst11, $kolor['czarny']);
imagepng($im);
imagedestroy($im);
?>