編集:
私は再び質問を変更しました:
このライブラリを使用して PDF ファイルを操作しています。
このコードを使用して、出力をブラウザーに提供しています。
#!perl
use strict;
use warnings;
use lib "..\\mymodules\\CAM-PDF-1.57\\lib";
use CAM::PDF;
my $pdf = CAM::PDF->new('doc1.pdf');
# append the other file
my $anotherpdf = CAM::PDF->new('doc2.pdf');
$pdf->appendPDF($anotherpdf);
print "Content-Type: application/pdf\n";
print "Content-Disposition: inline\n\n";
print "Content-Transfer-Encoding: binary\n";
print "Accept-Ranges: bytes\n\n";
$pdf->output();
結果:
ブラウザーにロードされた最初の pdf ファイルのみを取得します。
問題が解決しました:
コマンド$pdf->clean();
の前に追加する必要がありましたが、完璧に機能します。$pdf->output();
:)