我在一個文件夾中有很多PDF文件。我想使用xpdf從這些PDF中提取文本。例如:如何使用xpdf從PDF中提取文本?
- example1.pdf提取物example1.txt
- example2.pdf提取物example2.txt
- 等。
這裏是我的代碼:
<?php
$path = 'C:/AppServ/www/pdfs/';
$dir = opendir($path);
$f = readdir($dir);
while ($f = readdir($dir)) {
if (eregi("\.pdf",$f)){
$content = shell_exec('C:/AppServ/www/pdfs/pdftotext '.$f.' ');
$read = strtok ($f,".");
$testfile = "$read.txt";
$file = fopen($testfile,"r");
if (filesize($testfile)==0){}
else{
$text = fread($file,filesize($testfile));
fclose($file);
echo "</br>"; echo "</br>";
}
}
}
我得到空白結果。我的代碼有什麼問題?
你嘗試過什麼?如何放置良好的回聲陳述 – 2012-02-15 00:15:57