PDF – How to Force Grayscale PDF to Black and White

foxit-readerpdfpdf-reader

I have a large color PDF that I can easily view greyscale in Foxit Reader:

foxit color controls

Unfortunately various bits of text end up in ridiculously light shades of grey.
Similar, but not direct, questions include:

How can I force a PDF to display only in pure black and white?

Best Answer

ImageMagick is free and cross-platform. This command should work:

convert <input> -threshold xx% <output>

For example:

convert original.pdf -threshold 50% new.pdf

You'll have to set the threshold to taste.

Related Question