6
1
I scanned a document in color to PDF, and I don't want to re-scan it.
How can I convert this PDF document to grayscale (preferably without loss of other information)?
My usual toolset of doPDF, pdfsam and the Neevia online converter don't work here. I was thinking I could simply print to PDF and select the Grayscale color option, but doPDF doesn't have that option.
I'm using Windows, but I can probably handle a solution for any OS.
1OMG!, what a complicated workaround for avoiding the Ghostscript command prompt to stay up after the processing! A more simple solution is to add
-dNOPAUSE -dBATCH
to the commandline. The-dNOPAUSE
part spares you from hitting [return] after each page, and the-dBATCH
part saves you from typing 'quit' at to exit theGS>
prompt. And even shorter: just use-o grayscale.pdf
for specifying the output file; this-o ...
implicitly also sets-dBATCH -dNOPAUSE
... – Kurt Pfeifle – 2011-08-08T20:14:35.797It appears this no longer works with recent versions of Ghostscript: http://ghostscript.com/pipermail/gs-bugs/2012-May/025904.html says "'Gray' is not a documented legal value for ColorConversionStrategy"
– AnC – 2013-02-21T17:01:20.083