我正在尝试将PDF格式转换为文字格式
我使用了以下正常工作的代码:
string text = null;
PdfFocus execute = new PdfFocus();
Uri url = new Uri(letterUrl);
execute.OpenPdf(url);
if (execute.PageCount > 0)
{
text = execute.ToText(1,1);
}
有人可以帮我解决在转换之前或之后如何删除PDF中的标题内容吗?