Promote greys to cmyk black?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
cg433n
Posts: 2
Joined: 2014-01-22T06:21:00-07:00
Authentication code: 6789

Promote greys to cmyk black?

Post by cg433n »

Is there a way to move all gray colors of a CMYK image (e.g. a cmyk .tiff) into the black (K) plate with Imagemagick?
(In Adobe Acrobat Pro, this functionality is labeled: "Promote grays to CMYK black")
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Promote greys to cmyk black?

Post by snibgo »

Converting it to CMY than back to CMYK seems to do the trick.

Code: Select all

convert incmyk.tiff -colorspace CMY -colorspace CMYK outcmyk.tiff
snibgo's IM pages: im.snibgo.com
cg433n
Posts: 2
Joined: 2014-01-22T06:21:00-07:00
Authentication code: 6789

Re: Promote greys to cmyk black?

Post by cg433n »

While the command works, it looks like the colors of the result are significantly altered.
I'm trying separate the channels of an image like this: http://en.wikipedia.org/wiki/File:Barns ... tetons.jpg,
so that all black and gray color data lies on one plate http://en.wikipedia.org/wiki/File:CMYK_ ... _black.jpg, thereby conserving for four color process newsprint printing.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Promote greys to cmyk black?

Post by snibgo »

The main image on your linked page is sRGB, not CMY or CMYK.

For printing, it's better to use profiles tuned to your printer/inks/paper.
snibgo's IM pages: im.snibgo.com
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Promote greys to cmyk black?

Post by snibgo »

Can you put up the source image and results? Put them somewhere like dropbox.com and paste the links here. Also say what version IM you are using, and the exact commands.
snibgo's IM pages: im.snibgo.com
Post Reply