将 pdf 转换为文本 “无法打开 pdf 文件”
我尝试使用 http://www.pdf2text.com/download/P2TServerT.zip 将 pdf 转换为文本 我运行了“regsvr32 P2TServer.dll”,但此代码不起作用
<?php
$p2t = new COM("P2TServer.P2T");
$p2t->VerifyLicense("4747457", "345srwr242342423");
$p2t->EngageProcessor(64+32,"5,10,11-15", "");
print $p2t->Convert ("c:\test\test1.pdf", "c:\box\test1.txt");
$p2t = null;
?>
结果如下:
无法打开文件:c:est est1.pdfDone!
大家都可以帮助我吗?请..
I tried to convert pdf to text with http://www.pdf2text.com/download/P2TServerT.zip
i ran "regsvr32 P2TServer.dll" but this code did'not work
<?php
$p2t = new COM("P2TServer.P2T");
$p2t->VerifyLicense("4747457", "345srwr242342423");
$p2t->EngageProcessor(64+32,"5,10,11-15", "");
print $p2t->Convert ("c:\test\test1.pdf", "c:\box\test1.txt");
$p2t = null;
?>
The result like this :
Can not open file: c: est est1.pdfDone!
Everyone can help me? please..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对那个特定的图书馆一无所知,但在我看来,你的路径没有被转义。试试这个:
I don't know anything about that particular library, but it looks to me like your paths are not escaped. Try this: