TPDF 转到页面

发布于 2024-10-19 05:22:09 字数 143 浏览 2 评论 0原文

这是一种我可以在多次调用 addPage 后返回到上一页的方法,因为当我调用 write 时,它​​将它添加到当前页面,我需要它在第一页上写入。我已经浏览了它的文档,但似乎找不到任何东西?

顺便说一句,我正在 php 创建我的 pdf

谢谢

Is their a way that I can go back to a previous page after calling addPage more than once because when I call write it adds it to the current page where I need it to write on the first page. I have been through its documentation and cannot seem to find anything?

By the way I am creating my pdf in php

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一个人的旅程 2024-10-26 05:22:09

使用以下代码解决了这个问题,

$numPages = $fpdi2->getNumPages();

for($int=1;$int < $numPages + 1; $int++){
    $fpdi2->setPage($int );
    // do your code here with that page
}

This was solved using the following code,

$numPages = $fpdi2->getNumPages();

for($int=1;$int < $numPages + 1; $int++){
    $fpdi2->setPage($int );
    // do your code here with that page
}
≈。彩虹 2024-10-26 05:22:09

你必须改变你的程序逻辑。

You have to change your program logic.

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