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

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -