-1

在 pdf 中显示 pdf

我正在使用来自html的mpdf生成pdf,我面临的问题是我有图像,我可以使用img src显示它们,但我需要在pdf中显示pdf

我有 pdf 文件,我必须在 pdf 文件中显示

使用 href,用户可以下载报告 pdf 文件中的 pdf

有任何想法吗?

这是我迄今为止尝试过的代码,似乎没有任何效果:

<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>

<iframe src="http://docs.google.com/gview?url=<?php echo base_url().'get_image.php?i='.$plan_dir.$plan['file'];?>&embedded=true" style="width:718px; height:700px;" frameborder="0"></iframe>
4

1 回答 1

0

尝试使用带有 的 URL http,例如:

http://example.com/image.jpghttp://127.0.0.1/project/image.jpg

而不是 base_url()...


要使用该链接,请尝试使用name

例如:

<a name="http://example.com" target="_blank">DESCRIPTION</a>
于 2015-11-03T17:31:53.093 回答