在pdf中显示pdf
我使用hd中的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>
答案 0 :(得分:0)
尝试将网址与http
一起使用,例如:
http://example.com/image.jpg或http://127.0.0.1/project/image.jpg
而不是base_url()......
要使用该链接,请尝试使用name
例如:
<a name="http://example.com" target="_blank">DESCRIPTION</a>