my objective is to convert a rather large separated CMYK TIFF to a PDF/X. But I have trouble preserving the original color.
The TIFF (tiny example hosted here: http://s000.tinyupload.com/index.php?fi ... 8378913311
This image was created with LibTiff using the euqations from this adress: http://www.rapidtables.com/convert/colo ... o-cmyk.htm
When using the command
Code: Select all
convert out5_recmyk_tiny.tiff output.pdf
It is actually supposed to look like this reference RGB PNG: http://s000.tinyupload.com/index.php?fi ... 3172762386
Is it a poorly created TIFF? Why is it displayed differently by different SW? Is the TIFF pixel data alright but missing metadata to instruct how to read the CMYK? Should I use different equations to derive values for CMYK from RGB?
Also, I intend to use the following command (ghostscript of an texlive 2014 install) to convert the PDF to PDF/X.
Code: Select all
ps2pdf -dPDFX -sProcessColorModel=DeviceCMYK -dAutoFilterColorImages=false -dEncodeColorImages=false intermediate.pdf pdfx.pdf
Thanks in advance