TCPDF远程图片加载问题
我试图将远程图像加载到 tcpdf 生成的 pdf 中,但我似乎无法让它工作?
pdf 的其余部分加载得很好,看起来像是在尝试检索图像,但它只是打印到页面上?
我使用的代码是:
$pdf->Image("http://media.domain.com/logo.jpg", 0, 0, 100, 150, 'JPEG', '', 'T', true, 72,'','','','','','','');
对此的任何帮助都将是巨大的帮助,
谢谢,
Im trying to load a remote image into a pdf generated by tcpdf however I can't seem to get it to work?
The rest of the pdf loads fine and it looks like to trying to retrieve the image however it just does print to the page?
The code I am using is:
$pdf->Image("http://media.domain.com/logo.jpg", 0, 0, 100, 150, 'JPEG', '', 'T', true, 72,'','','','','','','');
Any help on this would be a massive help,
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置
我认为你需要在 php.ini 中
它对我有用
更新:
但是,请考虑有关
allow_url_fopen
的建议:我应该在 PHP 中允许“allow_url_fopen”吗?
I think you need to set
in php.ini
It works for me
Update:
However, consider this recommendations regarding
allow_url_fopen
:Should I allow 'allow_url_fopen' in PHP?
该问题已在最新的 TCPDF 版本中得到彻底解决。只是升级。
请查看 TCPDF 网站 http://www.tcpdf.org 并咨询官方论坛以获取更多信息。
This problem has been completely addressed on the latest TCPDF release. Just uprgade.
Check the TCPDF website at http://www.tcpdf.org and consult the official forum for further information.