将 HTML 表单导出为 .PDF 或 .DOC
我有一个带有一些 html 表单的网站(有一些文本输入、复选框等),我需要这个:当用户提交此表单时,它们将通过带有填充表单的 pdf 或 doc 格式的邮件发送。所以我可以打印与用户提交的内容完全相同的内容。最好或最简单的方法是什么?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能做这个客户端,这实际上取决于你使用的后端技术。如果您使用 .NET,那么 Aspose 是一个非常易于使用的工具包,用于填写/操作 pdf 和 .docs
对于 php,请查看pdftk(pdf 工具包)
You can't do this client side, it really depends on which back-end technology you are using. If you are using .NET then Aspose is a really easy to use toolkit for filling in/manipulating pdfs and .docs
For php have a look at pdftk (pdf toolkit)
最好的方法之一是使用 iText http://itextpdf.com
One of the best way is using iText http://itextpdf.com
如果您使用 PHP 处理表单,则可以生成表单输入的 HTML 摘要,然后使用 http://code.google.com/p/dompdf/
Provided you're using PHP for processing the form you can generate an HTML summary of the form input and then convert it to PDF using a tool such as http://code.google.com/p/dompdf/