Hi, I would like to know if it exists any functionality of ImageMagick to help me with my problem. I have a multichannel image (CMYK + other channels like spot color channels) properly separated into single images. This is, now I have an image for each CMYK channel plus an image for each extra channel. I would like to know if there is any way to make the opposite process. I mean, recover my original CMYK image with the extra channels from my collection of separated images. I've been able to make it with a normal CMYK image with
Code: Select all
convert imgC imgM imgY imgK -set colorspace CMYK -negate -combine output_image
but doing the same with my multichannel image
Code: Select all
convert imgC imgM imgY imgK img1 img2 -set colorspace CMYK -negate -combine output_image
generates a CMYK image with the extra channels mixed with the CMYK ones, losing them. I haven't found any other colorspace to assign which would make what I want. Another alternative I had thought is joining just the CMYK images and add the other channels later, but I don't know if that's even possible....
If someone can help me I would be really grateful. Thank you anyway.
Anna