Codeigniter 和 ezPDF 添加图像
我目前正在 Codeigniter 中关注此教程,想知道如何添加 将图像转换为 pdf,ezpdf 页面上的手册没有具体说明我需要输入什么样的路径,我尝试了所有方法,但 PDF 只是无法加载或显示图像。
供您参考,我使用下面的代码添加图像。
$image = base_url()."system/application/images/logo.jpg";
$this->cezpdf->ezImage( $image );
I am currently following this tutorial in Codeigniter and was wondering how I can add
an image to a pdf, the manual on ezpdf's page doesn't specifically state on what kind of path I need to input, I tried everything and the PDF just would not load or show an image.
For your reference I am using the code below to add an image.
$image = base_url()."system/application/images/logo.jpg";
$this->cezpdf->ezImage( $image );
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终使用了 fpdf 和 codeigniter,以下是我添加图像的方法
I ended up using fpdf with codeigniter and here's how I added the image
我使用了
site_url()
并且它对我有用:cezpdf
fopen
是 url 并将其缓存在其临时目录中。I used
site_url()
and it works for me:cezpdf
fopen
s the url and caches it in its temp directory.