创建 PDF 信封
我需要创建 PDF 信封的能力,并且还没有找到一个好的解决方案,所以我认为这可能会引起一些兴趣。
I was in need of the ability to create a PDF Envelope, and hadn't found a good solution for doing so, so I thought that this might be of some interest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们使用PDFSharp,一个免费的PDF文档工具。 效果很好。 这是这样做的方法。 它将创建一个新的 pdf 文档,信封大小,并将地址居中。 GetAddress() 只是用于从数据库检索地址的方法。 只需使用
\n 对地址中的不同行进行换行。
We use PDFSharp, a free PDF document tool. It worked out pretty well. Here's the method for doing so. It will create a new pdf document, envelope sized, and center the address. GetAddress() is just a method used to retrieve the address from a DB. Just use
\n to newline the different lines in the address.
PDFSharp 很好,iTextSharp 也很好,它是 iText 的 Java 端口,是最早的 PDF 库之一。
PDFSharp is good, so is iTextSharp, the Java port of iText, one of the first PDF libraries around.