http://www.perlmonks.org?node_id=549955


in reply to Edit PDF Text

It might be easiest to uncompress the PDF with pdftk and then just use perl for the substitution:
pdftk old.pdf output new.pdf uncompress perl -pi -e 's/oldstring/newstring/g' new.pdf
If you want to recompress the file,
pdftk new.pdf output new_compress.pdf compress

Replies are listed 'Best First'.
Re^2: Edit PDF Text
by avik (Novice) on May 17, 2006 at 17:17 UTC
    Thanks, I will take a look at this option!