关于 .net:使用 abcpdf 列出 pdf 文档中的所有标签

listing all the tags in a pdf document using abcpdf

我正在尝试使用 AbcPdf .net 组件(版本 7)来处理一些 PDF 并生成元数据。我想知道是否有办法列出pdf文档中的所有标签?作为标记 pdf 的示例,我在此处使用此文件

是否有其他组件或工具可用于列出或提取 pdf 标签?

提前感谢您的帮助


使用 iTextSharp。它是免费的,您只需要”itextsharp.dll”。

http://sourceforge.net/projects/itextsharp/

这是一个从 PDF 中读取文本的简单函数。

1
2
3
4
5
6
7
8
9
10
11
12
13
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 也有处理标签的方法。


原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269806.html

(0)
上一篇 2022年6月23日
下一篇 2022年6月23日

相关推荐

发表回复

登录后才能评论