-
-
Save smallnest/75249140914aecc7f4a9df54b9b670d8 to your computer and use it in GitHub Desktop.
Remove Wow! eBook PDF Watermark
This file contains 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
#install pdftk | |
#export LC_CTYPE=C # if you encounter "sed: RE error: illegal byte sequence" | |
pdftk original.pdf output uncompressed.pdf uncompress | |
sed -e "s/Download from Wow! eBook \<www.wowebook.com\>/ /g" < uncompressed.pdf > temp.pdf | |
pdftk temp.pdf output fixed.pdf compress | |
rm temp.pdf | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment