使用smalot / pdfparser。我可以提取文本,但不能提取表单字段数据

时间:2016-12-08 17:13:12

标签: php parsing pdf

我使用pdf创建了一个简单的InDesign,可以使用pdf代码从我的smalot/pdfparser中提取文本。但是,pdf表单字段中的内容不会被提取。 parseContent或getContent会工作吗?如果是这样,那怎么配置?我已经尝试了很多方法并且已经完成了API文档,但我无法理解它。

include('pdfparser/vendor/autoload.php');
$parser = new \Smalot\Pdfparser\Parser();
$pdf = parser->parseFile('simple.pdf');
$text = $pdf->getText();
echo $text;

我已成功使用getDetails,但无法找出parseContent或getContent - 如果它们甚至是用于提取输入和保存的表单字段数据的正确解决方案。

我不能将第三方外部程序用于此解决方案。正在运行IIS并仅使用PHP

0 个答案:

没有答案