Maniac
Erfahrenes Mitglied
google lieferte mir folgendes ergebnis:
http://www.fpdf.de/forum/showthread.php?t=1762
http://www.fpdf.de/forum/showthread.php?t=1762
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$filepath = substr($_GET['pfad'],1);
$filename = $_SERVER['DOCUMENT_ROOT'].$filepath;
$textfile = substr($filename,0,-4);
$content = shell_exec('C:\\xpdf\\bin64\\pdftotext '.$filename.' -');
pdftotext version 3.03
Copyright 1996-2011 Glyph & Cog, LLC
Usage: pdftotext [options] <PDF-file> [<text-file>]
-f <int> : first page to convert
-l <int> : last page to convert
-layout : maintain original physical layout
-fixed <fp> : assume fixed-pitch (or tabular) text
-raw : keep strings in content stream order
-htmlmeta : generate a simple HTML file, including the meta information
-enc <string> : output text encoding name
-eol <string> : output end-of-line convention (unix, dos, or mac)
-nopgbrk : don't insert page breaks between pages
-opw <string> : owner password (for encrypted files)
-upw <string> : user password (for encrypted files)
-q : don't print any messages or errors
-cfg <string> : configuration file to use in place of .xpdfrc
-v : print copyright and version info
-h : print usage information
-help : print usage information
--help : print usage information
-? : print usage information
$filename : C:/xampp/xampp/htdocs/Masslisten/Esche Braun/1 KL/KD/40 mm/61681.pdf
$textname: C:/xampp/xampp/htdocs/Masslisten/Esche Braun/1 KL/KD/40 mm/61681.txt
Usage: pdftotext [options] <PDF-file> [<text-file>]
$content = exec('C:\\xpdf\\bin64\\pdftotext '.escapeshellcmd($filename).' '.escapeshellcmd($textfile.'.txt').' -');