1

我必须从 .pdf 文件中编写代码,然后将其复制到任何其他 pdf 文件中。我为打开文件而编写的代码如下所示:

<%args>
$fullname
$filename

</%args>
<%init>
use IO::File;

$r->content_type('application/pdf');
$r->header_out( 'Content-disposition' => "attachment; filename=$filename" );


my $tmpfile = $filename;
my $forread = new IO::File "< $fullname";

my @lines = <$forread>;


foreach my $key (@lines){ 
      print $key;
       }

return $fullname;

</%init>

其中 filename 是将 pdf 内容保存到的文件的名称,“fullname”是从中获取内容的 pdf

4

1 回答 1

2

您当前正在阅读文本文件。您应该binmode首先使用非文本(如 PDF)。而且,永远不要使用间接对象语法

my $fh = IO::File->new($fullname, 'r');

$fh->binmode(1);

所以试试这样的东西,改编自梅森书

use Apache::Constants qw(OK);

my $fh = IO::File->new($fullname, 'r');

$fh->binmode(1);

$m->clear_buffer; # avoid extra output (but it only works when autoflush is off)

$r->content_type('application/pdf');
$r->send_http_header;

while ( my $data = $fh->getline ) {
    $m->print($data);
}
$fh->close;

$m->abort;
于 2012-11-12T22:15:10.943 回答