php and xps files -


i want import content text im getting binary values, tried doesnt work:

$data = file_get_contents("input.xps"); 

theres lib can use? thank you

you need tool can convert .xps files. there ghostscript variant called gxps that. http://ghostscript.com/ghostxps.html

conversion text 2 step process it, still simple:

exec("gxps -sdevice=pdfwrite -soutputfile=input.pdf -dnopause input.xps"); $text = exec("pdftotext input.pdf"); 

Comments

Popular posts from this blog

Cursor error with postgresql, pgpool and php -

delphi - ESC/P programming! -

c++ - error: use of deleted function -