Compress PDF after manipulation
问题 I have the following problem: I am receiving various scanned PDF files from a Kyocera Scanner Device. I have to automatically manipulate these PDF Files in order to: Delete the colors from textmarkers Convert the PDF to grayscale Put it in our DMS I am using a Bash-Script to do the job. For deleting the textmarker colors and converting to grayscale I use Imagemagick: convert -density 150 INPUT.pdf \ -channel rgba \ -alpha set \ -fuzz 15% \ -fill white \ -opaque 'rgb(255,200,195)' \ -opaque