0

我使用 php 的 R&OS pdf 类制作了一个动态 pdf 文件,一切正常,您打开 php,浏览器显示 pdf 文件。但是我的客户只是告诉我他们需要在一个小的 iframe 中显示它,所以他们要求我强制它下载,这样用户就不会得到这个字母大小的 pdf 文件缩小到 500 像素。我对 R&OS pdf 类不太熟悉,但我找不到这样做的方法,而不是使用这段代码

`<?php
header('Content-disposition: attachment; filename=huge_document.pdf');
header('Content-type: application/pdf');
readfile('huge_document.pdf');
?>`

也许我只是不知道在哪里正确放置代码,有什么想法吗?

4

1 回答 1

0

试试这样的苏西:

例子.php

<?php
 error_reporting(0);
 $text = 'Example text';
 include './src/Cezpdf.php'; // http://pdf-php.sourceforge.net/
 $pdf = new Cezpdf();
 $pdf->ezText($text,50);
 $pdfcode = $pdf->ezOutput(1);
 file_put_contents('huge_document.pdf', $pdfcode);

 if (isset($_GET['d']) && $_GET['d']){
   header('Content-disposition: attachment; filename="huge_document.pdf"');
   header('Content-type: application/pdf'); // or 'application/octet-stream'
   header('Content-Encoding: gzip');
   while (@ob_end_clean());
   ob_start('ob_gzhandler');
   readfile('huge_document.pdf');
   exit;
 }
?><!DOCTYPE html>
<html>
<head>
<title></title>
</head> 
 <body>
 <p><a href="?d=download">Download</a></p>
 <iframe src="file.pdf" width="500" height="700"></iframe>
</body>
</html>
于 2013-07-17T10:52:49.900 回答