我正在使用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