Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 PHP 脚本,它使用 tcpdf 库生成 PDF 文档,然后将其附加到电子邮件中并发送。我需要在一张 A4 纸上重复文件 4 次,即在一张纸上打印 4 次。我可以使用 fpdi 库打开现有的 PDF 文档,并使用 $pdf->setSourceFile('mypdf.pdf') 将其多次放入新的 PDF 中。是否可以从二进制流而不是文件设置源?
谢谢
我猜你已经有了这个想法,但你当然可以创建你的 pdf 文件,将其保存到“temp.pdf”,使用该文件,然后使用unlink('temp.pdf').
unlink('temp.pdf')