标题几乎说明了一切。我想在pdf中搜索某些关键字,然后确定这些关键字所在的页面。
答案 0 :(得分:2)
鸽子在iTextSharp位上拖尾。你的问题听起来与这篇文章相似。
如何使用带有Pdfreader类的itextsharp读取PDF内容。我的PDF可能包含纯文本或文本图像 Reading PDF content with itextsharp dll in VB.NET or C#
因此在PoSH中,正如trebleCode所述,你可以做类似....
Add-Type -Path .\itextsharp.dll
$reader = New-Object iTextSharp.text.pdf.pdfreader -ArgumentList "$pwd\test.pdf"
# the rest of your code starts here