我正在尝试使用AbcPdf .net组件(版本7)来处理一些PDF并生成元数据。我想知道是否还有列出pdf文档中的所有标签?作为标记pdf的示例,我使用此文件here
是否有可用于列出或提取pdf标签的其他组件或工具?
先谢谢你的帮助
答案 0 :(得分:0)
使用iTextSharp。它是免费的,你只需要“itextsharp.dll”。
http://sourceforge.net/projects/itextsharp/
这是一个简单的函数,用于从PDF中读取文本。
Public Shared Function GetTextFromPDF(PdfFileName As String) As String
Dim oReader As New iTextSharp.text.pdf.PdfReader(PdfFileName)
Dim sOut = ""
For i = 1 To oReader.NumberOfPages
Dim its As New iTextSharp.text.pdf.parser.SimpleTextExtractionStrategy
sOut &= iTextSharp.text.pdf.parser.PdfTextExtractor.GetTextFromPage(oReader, i, its)
Next
Return sOut
End Function
ITextSharp还有处理标签的方法。