Problems with CYMK colours
Posted: 2014-11-03T06:40:36-07:00
I have 6 images of circles, in different colours. These 6 images are then repeated in a specific order to make a 72 by 72 image. For more background information see here: http://www.jfmamjjasonp.co.uk/mm/mastermind.htm
I've created the images in JPG format. I then use ImageMagick from the command prompt on Windows. I have to create the image in 4 quarters, otherwise it exceeds the 8190 characters allowed. I use the following command:
Montage input1.jpg input2.jpg … input1296.jpg -mode Concatenate output1.jpg
I then join my 4 quarters in an image editor, to create the final image. All looks fine on screen. However, when I've got this printed, the colours are not the same - some are not even close. I now understand that the reason for this is because the image is using RGB colours, whilst the printer uses CMYK colours, and sometimes the encoding of this isn't a great match.
So I'm now trying to do the same as the above, but using image files saved in CMYK format. However, when I use the Montage command on these files, the output file has the colours inverted. When I undo this invert, the colours are close, but not the same as the input files. I've tried this with both TIF and JPG files, but the same result happens. If I leave out "-mode Concatenate", then the gaps between the images is white, but everything else is inverted.
Can ImageMagick cope with files with CMYK colours? If so, what do I need to do differently to the above?
Is there a cleverer way to create the required image than the method I am using?
I've created the images in JPG format. I then use ImageMagick from the command prompt on Windows. I have to create the image in 4 quarters, otherwise it exceeds the 8190 characters allowed. I use the following command:
Montage input1.jpg input2.jpg … input1296.jpg -mode Concatenate output1.jpg
I then join my 4 quarters in an image editor, to create the final image. All looks fine on screen. However, when I've got this printed, the colours are not the same - some are not even close. I now understand that the reason for this is because the image is using RGB colours, whilst the printer uses CMYK colours, and sometimes the encoding of this isn't a great match.
So I'm now trying to do the same as the above, but using image files saved in CMYK format. However, when I use the Montage command on these files, the output file has the colours inverted. When I undo this invert, the colours are close, but not the same as the input files. I've tried this with both TIF and JPG files, but the same result happens. If I leave out "-mode Concatenate", then the gaps between the images is white, but everything else is inverted.
Can ImageMagick cope with files with CMYK colours? If so, what do I need to do differently to the above?
Is there a cleverer way to create the required image than the method I am using?