my $mime = "image/gif";
print "Content-type: $mime\n\n";
open(thefile,"images/logo.gif");
binmode(thefile);
while(<thefile>) {
print $_;
}
close(thefile);
Any suggestions? In reply to open and print image by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |