TCPDF远程图片加载问题

发布于 2024-08-29 10:06:48 字数 291 浏览 9 评论 0原文

我试图将远程图像加载到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

篱下浅笙歌 2024-09-05 10:06:48

设置

allow_url_fopen = On

我认为你需要在 php.ini 中

它对我有用

$pdf->Image('http://chart.apis.google.com/chart?cht=ls&chd=t:1366,1459,2534,2551,2589&chco=76A4FB&chls=2.0,0.0,0.0&chxt=x&chxl=0:|19|20|21|22|23&chs=600x150&chds=1366,2589', '', '', 100);

更新:

但是,请考虑有关 allow_url_fopen 的建议:
我应该在 PHP 中允许“allow_url_fopen”吗?

I think you need to set

allow_url_fopen = On

in php.ini

It works for me

$pdf->Image('http://chart.apis.google.com/chart?cht=ls&chd=t:1366,1459,2534,2551,2589&chco=76A4FB&chls=2.0,0.0,0.0&chxt=x&chxl=0:|19|20|21|22|23&chs=600x150&chds=1366,2589', '', '', 100);

Update:

However, consider this recommendations regarding allow_url_fopen:
Should I allow 'allow_url_fopen' in PHP?

雨落□心尘 2024-09-05 10:06:48

该问题已在最新的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文