PHP 到 Mesh 2 PDF 是否在一起?

发布于 2024-08-30 11:58:05 字数 184 浏览 5 评论 0原文

我有一个已经预先设计好的PDF,我想在PDF中填充一些数据库信息。所以我很好奇是否应该将 PDF 保存为 JPG 并使用图像顶部的数据渲染它们并重新创建 PDF。

或者有没有办法使用已经存在的PDF,并将数据打印到已经制作的PDF中?

我正在尝试找出生成此类 PDF 的最佳解决方案。

所有想法将不胜感激!

I have an already pre-designed PDF, and I would like to fill the PDF with some database information. So I'm curious if I should save the PDF into JPG's and render them out with the data on top of the image and re-create a PDF.

Or is there a way to use the PDF already, and print data into the PDF that is already made?

I am trying to figure out the best solution to generating this type of PDF.

All thoughts would be greatly appreciated!

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

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

发布评论

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

评论(3

铜锣湾横着走 2024-09-06 11:58:06

经过一番深入挖掘,我能够在框架内使用 Zend PDF 来轻松更新 PDF。这是我第一次使用 Zend Framework,发现它非常有用。我建议任何尝试操作 PDF 的人都使用 Zend。

只是我的 .02。我很感谢你的指点,尽管已经给出了。

After a bit more digging, I was able to use Zend PDF within the framework to update the PDF quite easily. It was my first time using the Zend Framework, and found it quite useful. I suggest anyone trying to manipulate PDF's use Zend.

Just my .02 though. I appreciate your pointers though that were given.

情场扛把子 2024-09-06 11:58:05

您可以在这里阅读有关 PHP 的 PDF 库的信息: http://php.net/manual/book.pdf .php

PHP 还推荐以下替代方案:

潦草背影 2024-09-06 11:58:05

PDF 文件支持使用交互式表单字段,因此从数据库向 PDF 添加信息的最佳方法是将表单字段添加到数据库中,并找到一个可让您以编程方式填写 PDF 表单的库。

将 PDF 渲染为图像只是为了在其上写入信息,然后将其转换回 PDF 意味着新 PDF 中没有任何文本可供选择,除非您对其进行 OCR,这不是最佳方法。

PDF files support the use of interactive form fields, so the best method for adding information to a PDF from a database, is add form fields to your database and find a library that let's you fill out PDF forms programatically.

Rendering a PDF to an image just to write information on it and then converting it back to a PDF would mean that no text was selectable in the new PDF unless you OCR'd it, which isn't the most optimal way to do it.

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