Convert color PDF to black and white #

After exhausting the usual suspects (Adobe Acrobat, ImageMagick, Ghostscript, etc.), stumbled onto the cleanest results and smallest file size by pairing Preview.app and IrfanView:

  1. Open color.pdf (96.9MB) in Preview.app
  2. Open bw.pdf (235.4MB) in Preview.app
  3. Open bw.tif (109.5MB) in IrfanView
  4. Open bw2.tif (3.9MB) in IrfanView

Update

Substituting convert and gs for steps 3 and 4 led to cleaner output in some cases, albeit at the expense of larger file sizes:

$ convert bw.tif bw2.pdf
$ gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dQUIET -dBATCH -sOutputFile=bw3.pdf bw2.pdf

Notes

/misc | Apr 15, 2021


Subscribe or visit the archives.