Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save smallnest/75249140914aecc7f4a9df54b9b670d8 to your computer and use it in GitHub Desktop.
Save smallnest/75249140914aecc7f4a9df54b9b670d8 to your computer and use it in GitHub Desktop.
Remove Wow! eBook PDF Watermark
#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