Text of PDF

RJM Programming - July, 2018

PDF Contents or URL or   
"; } else if (strpos(strtolower(("~" . $inpdf)), "~http") !== false) { file_put_contents("/tmp/textofpdf.in", file_get_contents(str_replace('HTTPS:','http:',str_replace('Https:','http:',str_replace('https:','http:',str_replace('+',' ',$inpdf)))))); passthru("gs -q -dNODISPLAY -dSAFER -dDELAYBIND -dWRITESYSTEMDICT -dSIMPLE -f ps2ascii.ps -dQUIET - < /tmp/textofpdf.in ; rm -f /tmp/textofpdf.in"); } else if ($viafile != "") { //strlen($inpdf) > 200) { file_put_contents("/tmp/textofpdf.in", $inpdf); passthru("gs -q -dNODISPLAY -dSAFER -dDELAYBIND -dWRITESYSTEMDICT -dSIMPLE -f ps2ascii.ps -dQUIET - < /tmp/textofpdf.in ; rm -f /tmp/textofpdf.in"); } else { passthru("gs -q -dNODISPLAY -dSAFER -dDELAYBIND -dWRITESYSTEMDICT -dSIMPLE -f ps2ascii.ps \"" . str_replace('+',' ',$inpdf) . "\" -dQUIET -c quit"); } exit;