0

iam 使用 mpdf 将 html 转换为 pdf,问题是在生成的 pdf 中显示 pdf

我将展示我在做什么:

<div class="landscape">

<a href="<?php echo base_url().'get_image.php?i='.$plan_dir.$plan['file'];?>">Download PDF</a>

<a href="<?php echo base_url().'get_image.php?i='.$plan_dir.$plan['file'];?>"><embed src="<?php echo base_url().'get_image.php?i='.$plan_dir.$plan['file'];?>" width="500" height="375"></a>

<embed src="<?php echo base_url().'get_image.php?i='.$plan_dir.$plan['file'];?>" width="500" height="375">


<div id="pdf">
<object width="400" height="500" type="application/pdf" data="<?php echo base_url().'get_image.php?i='.$plan_dir.$plan['file'];?>" id="pdf_content">
                                <p>Insert your error message here, if the PDF cannot be displayed.</p>
</object>
</div>  

<object data="<?php echo base_url().'get_image.php?i='.$plan_dir.$plan['file'];?>" type="application/pdf" width="300" height="200">
alt : <a href="<?php echo base_url().'get_image.php?i='.$plan_dir.$plan['file'];?>">test.pdf</a>
</object>



</div>

我尝试过嵌入、对象和 pdf,它没有在生成的 pdf 中打开

有任何想法吗 ?

4

1 回答 1

0

我建议首先通过验证器运行您生成的 HTML,以检查是否存在任何语法错误。修复这些错误可能会解决问题。从上面的代码来看,你可能有很多。

于 2013-07-09T13:46:03.540 回答