I have a PDF file containing lots of images in CMYK colors.
For economic reasons, we decide to finally print in Grayscale.
But I'd like not to convert each images one by one.
Is there a simple way to convert the PDF file into Grayscale before
sending it to the printshop?
I have Adobe Acrobat 6.0 but I am not very familiar with it...
Thanks for anu tips,
--
S�bastien
http://edilibre.net
Why should you need to do this? I would guess the printshop can (in most
cases) use the CMYK version just fine.
--
Matti Vuori, <http://www.kotiposti.net/~xmvuori/index-e.htm>
The problem is that in my case there are lots of people between me and
the printshop and it would be far more comfortable for everyone that I
provide the final PDF correctly.
Thanks for the comment anyway!
> Is there a simple way to convert the PDF file into Grayscale before
> sending it to the printshop?
[...]
I use ghostscript (release 8.62 or higher) with this command-line options
(must be all on single line)
gs -sOutputFile=output.pdf -sDEVICE=pdfwrite -sColorConversionStrategy=Gray -dProcessColorModel=/DeviceGray -dCompatibilityLevel=1.4 input.pdf < /dev/null
--
Puppy Linux wiki: http://puppylover.netsons.org/dokupuppy
Puppy Linux Forum: http://puppylinux.ilbello.com
Windows me genuit, Ubuntu rapuere / tenet nunc Puppy Linux...
Thanks a lot!
It seems to work perfectly.
One last question: with such a command line, the PDF obtained has lost
approx 10 Mo (the original file was 25 Mo). Is the inital resolution of
the new PDF preserved?
> One last question: with such a command line, the PDF obtained has lost
> approx 10 Mo (the original file was 25 Mo). Is the inital resolution of
> the new PDF preserved?
[...]
the answer is: yes: pdf has decreased its size due to conversion from cmyk
to grayscale (resolution stills untouched), I use usually this method to
printing in offset with only black plate (able to print also grayscale)
All right. Thanks again.