iTextSharp 可以打开 RTF 文档、对其进行操作并将文档导出为 PDF 吗?
使用 iTextSharp(和 c#/ASP.NET)可以打开 RTF 文档,通过替换一些文本来操作它,插入图像(WMF 或 PNG),并将操作的文档导出到保留格式的 PDF 文档原始 RTF 文档?
本质上,我希望创建一个简单的邮件合并解决方案,模板为 RTF 格式,输出需要为 PDF 格式。 这需要在 ASP.NET 服务器上运行。
Using iTextSharp (and c#/ASP.NET) is it possible to open an RTF document, manipulate it by replacing some text, insert an image (WMF or PNG), and the export that manipulated document to a PDF document that retains the formatting of the original RTF document?
Essentially I'm hoping to create a simple mail merge solution with the template being in RTF and the output needing to be in PDF. This needs to run on an ASP.NET server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,iTextSharp 本身是不可能的。 更好的方法是使用 Word 对象打开文档,进行邮件合并,然后保存这些文档和 HTML。 现在您可以使用 iTextSharp 解析 html 并创建 PDF。
No it is not possible per se with iTextSharp. Better approach will be to use Word Object to open document, do mailmerge and then save those documents ad HTML. Now you can use iTextSharp to parse html and create PDF.