How do I replace outbound link URLs in a PDF document, using PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T06:11:31Zhttp://stackoverflow.com/feeds/question/586300http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/586300/how-do-i-replace-outbound-link-urls-in-a-pdf-document-using-php0How do I replace outbound link URLs in a PDF document, using PHPAlex Poole2009-02-25T14:57:30Z2009-02-25T16:05:16Z
<p>I have a PDF document with some external links.</p>
<p>I'd like to parse the document, replace the destination of the links then close (and serve) the PDF document, all using PHP</p>
<p>I know I can do this with PDFLib but I don't want to incur this cost.</p>
<p>I could re-write the document with FPDF or DomPDF, but some of these PDFs are quite complex so this would be a major time investment.</p>
<p>Surely there must be a way to do this directly to PDF docs, using native PHP?</p>
<p>TIA</p>
http://stackoverflow.com/questions/586300/how-do-i-replace-outbound-link-urls-in-a-pdf-document-using-php/586647#5866470Answer by ciscoheat for How do I replace outbound link URLs in a PDF document, using PHPciscoheat2009-02-25T16:05:16Z2009-02-25T16:05:16Z<p>I don't think there is a text/hyperlink changer class for PHP. The closest products, like <a href="http://www.accesspdf.com/pdftk/" rel="nofollow">pdftk</a>, only does higher-level stuff like merging, splitting and applying watermarks.</p>
<p>Changing a pdf is much more difficult than generating it, so you need to use a pdf editor like <a href="http://www.nitropdf.com/professional/edit-pdf.htm" rel="nofollow">Nitro PDF</a> (untested), or why not Acrobat/Illustrator/InDesign.</p>
<p>If you must use PHP, regenerating the PDF:s with one of the free classes seems to be your best choice. I like FPDF very much, it gets my recommendation. If you decide to use it, check out <a href="http://www.setasign.de/products/pdf-php-solutions/fpdi/" rel="nofollow">FPDI</a> as well, it can use existing PDF files as a template, maybe it will help you. Good luck!</p>