在 fpdf 中的图像上添加文本
有没有办法在pdf中的图像上添加具有某些参数的文本?
该文本可以是例如
$pdf->Cell(0,260,''.$person["CA"],'C',0 ,1);
this: .$person["CA"] 我从 php 文件顶部的全局调用..但想知道它是否也可能。 ..??
有什么想法吗???
is there a way to add text with certain parameters over images in pdf?
can this text be for example
$pdf->Cell(0,260,''.$person["CA"],'C',0 ,1);
this: .$person["CA"] i called from a global in the top of the php file.. but would like to know if its possible too. ..??
any ideas???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FPDF 中没有这样的内置函数,但这并不意味着您不能编写自己的例程来自动化该过程。像 FPDF 这样的库旨在提供基本功能供您扩展。
There's no such built-in function in FPDF, but that doesn't mean you can't write your own routine to automate the process. Libraries like FPDF are designed to provide base functionality for you to extend.