在 php 中将页面添加到 pdf
我需要在已经存在的第一页之后添加一页到pdf文件中,并在这个添加的页面中写入文本。我在某处读到,Zend 框架可以做到这一点,但我不知道如何做到。
预先感谢您的回答
I need to add into pdf file one page after already existing first page and into this added page write text. I read somewhere, that Zend framework can do it, but I have no idea how.
Thanks in advance for answer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要创建一个 pdf 对象并将其分配给一个变量:
然后您需要将 pdf 文件读入该对象:
现在,您将一个 (A4) 页面添加到 pdf 对象:
然后,您可以将文本写入到页面,您需要获取一种字体:
并声明您将使用此字体:
现在您可以使用以下方式向页面写入文本:
我们已经完成了该页面,因此将其关闭:
最后,关闭并保存文件:
信用:使用 PHP 生成 PDF
其他不错的教程:
第 2 部分
First you need to create a pdf object and assign it to a variable:
Then you need to read your pdf file into the object:
Now, you add a (A4) page to the pdf object:
Then, before you can write text to the page, you need to grab a font:
And state that you will be using this font:
Now you can write text to the page with:
We're done with the page, so close it with:
Finally, close and save the file:
Credit: Generate PDFs with PHP
Other good tutorials:
Part 2