Skip to content

Instantly share code, notes, and snippets.

@ibqn
Created October 13, 2019 08:32
Show Gist options
  • Select an option

  • Save ibqn/72b0b667a141e2ce88a3db783ea9f26f to your computer and use it in GitHub Desktop.

Select an option

Save ibqn/72b0b667a141e2ce88a3db783ea9f26f to your computer and use it in GitHub Desktop.
Modify text in pdf files

Use pdftk to uncompress the file, then edit via sed and finally recompress it.

pdftk input.pdf output uncompressed.pdf uncompress
sed -i 's/foo/bar/g' uncompressed.pdf
# uncompressed.pdf now has all the changes
pdftk uncompressed.pdf output changed.pdf compress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment