Merging Separations into Composite CMYK

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
molibot
Posts: 1
Joined: 2015-08-07T02:45:05-07:00
Authentication code: 1151

Merging Separations into Composite CMYK

Post by molibot »

searching a way to make same as in this article
http://indesignsecrets.com/merging-sepa ... s-spot.php
I need exact same result including color profiles.
I'm tried examples from http://www.imagemagick.org/Usage/color_ ... bine_other
but there is huge difference in colors with photoshop result
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Merging Separations into Composite CMYK

Post by fmw42 »

Combine should work if done properly. But you do not give your command line nor your version of IM and platform. I do not know how to deal with spot colors, but for CMYK, -combine should work. If you post your PDF or separate files, some one can try to combine them, at least for the CMYK. You can upload to dropbox.com and put the URLs here.

One possible issue is that the PDF file is a vector shell holding the images. This may mean that you might have to extract the images from the PDF to get proper coloring. To do that, another tool would be necessary to do the extraction.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Merging Separations into Composite CMYK

Post by snibgo »

pdfmages is a good tool for extracting images from PDF files. Ghostscript (via ImageMagick) can rasterise the pages, but I don't know how well GS handles profiles. Extracting them with pdfimages, then processing with IM, may be more reliable.

In cases such as these, I don't know if profiles are embedded in images that are embedded in the PDF, or if the PDF contains metadata that embeds the profile, or if it merely assumed.

If you publish a sample PDF, someone can take a look.
snibgo's IM pages: im.snibgo.com
Post Reply