bild wird mittlerweile auch angezeigt,
leider nur auf unix-server:
http://www.tigerweb.de/gif.html
aber unter windows-server wir bild verzerrt/kaputt angezeigt, hab's mit binmode probiert funzt leider auch nicht:
http://www.frankfurt-stadtteile.de/test/gif.html
#!c:/perl/perl.exe
binmode(STDIN);
binmode(STDOUT);
binmode(STDERR);
print "Content-type: image/gif\n\n";
open (BILD, "test.gif");
@Bild = <BILD>;
print @Bild;
close (BILD);
#print "http://localhost/test/test.gif";