Last active
November 28, 2018 22:01
-
-
Save niqdev/c4f25d917547cc64a91d6ed636223e43 to your computer and use it in GitHub Desktop.
Remove watermark from pdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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