I have to generate a TIFF for print. It is common to use special black tones to get better visual experience. It is cmyk(40%,40%,40%,100%) in my case.
Whatever I do when merging two images together (compositing) the tool "convert" converts my "cmyk(40%,40%,40%,100%)" to "cmyk(0,0,0,255)".
Example:
- background.tif is an 8 bit CMYK TIF with LZW compression filled with cmyk(40%,40%,40%,100%).
- textlayer.tif is an 8 bit CMYK TIF with LZW compression with transparent background and yellow text
I call:
/usr/bin/convert -colorspace cmyk \
-compress lzw \
-depth '8' \
-endian msb \
-density 360x360 \
-units PixelsPerInch \
-profile ISOcoated_v2_300_eci.icc \
background.tif textlayer.tif -composite print.tif
When I now check the resulting "print.tif" the most used color is:
% identify -verbose print.tif | grep -A 2 Histogram
Histogram:
1674545: ( 0, 0, 0,255) #000000FF cmyk(0,0,0,255)
164: ( 0, 0, 1,254) #000001FE cmyk(0,0,1,254)
But thats not the black of my background:
%identify -verbose background.tif | grep -A 2 Histogram
Histogram:
1817895: (102,102,102,255) #666666FF cmyk(102,102,102,255)
Rendering intent: Perceptual
What's wrong? How can I do it?