Skip to content

Instantly share code, notes, and snippets.

@niqdev
Last active November 28, 2018 22:01
Show Gist options
  • Save niqdev/c4f25d917547cc64a91d6ed636223e43 to your computer and use it in GitHub Desktop.
Save niqdev/c4f25d917547cc64a91d6ed636223e43 to your computer and use it in GitHub Desktop.
Remove watermark from pdf
#!/bin/bash
sudo apt-get install pdftk
sudo snap install pdftk
pdftk ebook_original.pdf output ebook_uncompress.pdf uncompress
sed -e "s/Licensed to XXX <[email protected]>/ /" ebook_uncompress.pdf > ebook_uncompress_modify.pdf
pdftk ebook_uncompress_modify.pdf output ebook_modify.pdf compress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment