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

haskell - Using filter on an item in a list? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -

c# - Binding attached property to IEnumerable -