I'm in the process of developing a PHP script to create CMYK PDF'S and I need to convert JPEG files to CMYK but have come across something strange and was wandering if you could give me some information about why this happens.
Here is my convert command :
Code: Select all
convert input.jpg -profile cmyk.icc -colorspace CMYK output.jpg
I do not actually need the image to open correctly in the finder but am trying to work out why illustrator doesn't open PDF files that include CMYK images inserted by TCPDF correctly and for the first step I would like to understand what is so different between a CMYK JPEG file produced with ImageMagick and a CMYK JPEG file produced with Photoshop.
Thanks in advance.