如何使用Perl CGI脚本提供图像?

前端之家收集整理的这篇文章主要介绍了如何使用Perl CGI脚本提供图像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的Google fu让我失望了.如何使用Perl提供已生成的图像?

例:

<html><body><img src="getimage.pl"></body></html>

getimage.pl里有什么?

解决方法

干得好:
#!/usr/bin/perl -w
my $file = "inner-nav.gif";
my $length = (stat($file)) [10];
print "Content-type: image/gif\n";
print "Content-length: $length \n\n";
binmode STDOUT;
open (FH,'<',$file) || die "Could not open $file: $!";
my $buffer = "";
while (read(FH,$buffer,10240)) {
    print $buffer;
}
close(FH);
原文链接:https://www.f2er.com/Perl/172909.html

猜你在找的Perl相关文章