Forcing grayscale PDF to Black and White?

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?

3

2 Answers

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.

2

If you want to avoid downloading and working with the command line in ImageMagick, there's an online tool that can create pure Black and White from PDFs:

The B&W Threshold and reverse features may help with light elements.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like