0

我使用 TCPDF 在我的网站中创建 pdf 页面,我已经使用 TCPDF 成功创建了 pdf 文件,但现在的问题是我必须在生成的TCPDF pdf文件..我尝试了代码,但没有成功...示例代码如下..

    $journals_page='
    <embed>
    type="application/pdf"
    src="./uploads/publications/hi.pdf"
    width="100%"
    height="100%">
    </embed>
    ';
$html = ''.$journals_page;
$pdf->writeHTML($html, true, false, true, false, '');

我在 TCPDF 中使用 writeHTML() 类型的 pdf .. 在此之前创建的页面运行良好.. 但我无法显示 pdf 文件.. 请帮助我解决这个问题.. 在此先感谢..

4

2 回答 2

0

您可以使用 iframe 页面的标签来阻止下载。

标签是现在在 html5 中有效的新媒体元素

在 src 属性上链接 tcpdf.php

<html>
<body>
<embed
type="application/pdf"
src="http://yoursite.com/tcpdf/tcpdf.php″
width="100%"
height="100%">
</embed>
</body>
</html>
于 2014-08-04T12:57:27.653 回答
0

利用:

header("Location:path/to/hi.pdf");
于 2013-01-28T14:32:01.903 回答