使用iTextsharp在Pdf中提取超链接的问题

时间:2012-06-30 10:58:46

标签: c# pdf annotations itextsharp

我正在使用iTextSharp来提取PDF文件中的所有超链接。

以下是我的代码,它适用于所有PDF,但我附上的问题除外。

在提取此PDF时,它显示Links为count = 0,Annots为null。

如何获取这些超链接?

var Links= pdfReader.GetLinks(PageNo); // return count=0

PdfDictionary PageDictionary = pdfReader.GetPageN(PageNo);
PdfArray Annots = PageDictionary.GetAsArray(PdfName.ANNOTS); // returns null

0 个答案:

没有答案