如何使用itext将有序列表转换为pdf?
我必须将有序列表转换为 pdf。存储的数据采用 html 格式。使用 itextsharp 导出为 pdf 时,应将 ol-li 标签替换为有序列表。
I have to get an ordered list into pdf.The data stored is in html format.When exporting to pdf using itextsharp,the ol-li tags should be replaced by an ordered list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 iTextSharp 的
iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList()
方法。下面是一个针对 iTextSharp 5.1.1.0 的完整工作示例 WinForms 应用程序,它可以满足您的需求。请参阅内嵌评论以了解发生的情况。You'll want to use iTextSharp's
iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList()
method. Below is a full working sample WinForms app targeting iTextSharp 5.1.1.0 that does what you're looking for. See the inline comments for what's going on.