将 pdf 转换为文本 “无法打开 pdf 文件”

发布于 2024-10-30 04:05:11 字数 516 浏览 4 评论 0原文

我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小清晰的声音 2024-11-06 04:05:11

我对那个特定的图书馆一无所知,但在我看来,你的路径没有被转义。试试这个:

<?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;
?>

I don't know anything about that particular library, but it looks to me like your paths are not escaped. Try this:

<?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;
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文