Ubuntu – How to print in Black and White for Canon Printers

canonprinting

I am using a Canon MP280 printer, which I found a driver from canon on the european site for. The print dialogue does not allow me to print in black and white unfortunately. Does anyone know of a way for me to force this? I'm guessing it is just a fault with my printer driver, but I feel like greyscale printing should be something in the OS sending the job, not in the printer drivers part.

Best Answer

If you print to PDF first, you might have the option in there. If you don't (I don't for some reason), you can use imagemagick to convert a PDF from colour to greyscale in one command:

convert -density 600 -colorspace gray output.pdf output_greyscale.pdf

The -density 600 value is just there to preserve some quality as it rasterises text.

Related Question