如何将互联网上的图像网址放入 tcpdf 文件中?
您好,我想将图像放入我使用 TCPDF 制作的 PDF 文件中。 它是由在线 API 生成的图像,因此我无法将其存储在我的网络主机上。 但是,当我输入用于创建的图像 URL 时,我在生成 PDF 文件时遇到错误。
Hi I want to put an image into the PDF file I'm making using TCPDF. It is an image generated by an online API so I cannot store it on my webhost. But when I put the image URL for creating I'm getting error while generating the PDF file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TCPDF 只能使用保存在您的网络主机上的图像 - 本地文件,因为它需要图像的物理路径才能将其包含在文档中。 从 HTTP 抓取图像用于 TCPDF 的唯一方法是使用 cURL,这是我只用于文本和 html 的东西,但没有抓取图像的经验,但我确信有一种方法可以做到。
TCPDF can only use images saved on your webhost - local files, as it needs a physical path to the image in order to include it in the document. The only way you could grab an image from HTTP to be used for TCPDF would be to use cURL, which is something I have only used for text and html, but have no experience grabbing images with, but I'm sure there's a way it can be done.