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 中打开
有任何想法吗 ?