overlaying CMYK pure black object onto PNG image

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
wfzimmerman
Posts: 8
Joined: 2013-04-17T11:31:14-07:00
Authentication code: 6789

overlaying CMYK pure black object onto PNG image

Post by wfzimmerman »

Hi,

I am overlaying a bar code which must be in pure black (0,0,0,1 CMYK) on to a book cover which starts out in RGB. When I composite the bar code file onto the book cover canvas, something is causing the pure black to be converted to RGB blacks that are not pure black. The printer requires the book cover to be CMYK and the bar code in pure black. I can convert the RGB cover to CMYK successfully, but the bar code is no longer pure black. Any ideas what is happening here?

Fred
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: overlaying CMYK pure black object onto PNG image

Post by fmw42 »

IM cannot properly composite with CMYK colorspace, as far as I know.

You would be best to process everything in sRGB and then at the end convert to CMYK preferably with profiles (or -colorspace CMYK).
Post Reply