Hello,
I try to convert rgb.png files to cmyk.tiff. (convert -colorspace CMYK rbg.png cmyk.tiff). The problem is that black channel is zero and all black pixels are mixture of cyan, magenta and yellow. How can I make CMYK files, where black pixels are only in the K-channel and all other colors are zero at these points.
Regards,
Arto
black channel in CMYK
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: black channel in CMYK
What version of IM are you using?
can you give a link to an example image (small example).
can you give a link to an example image (small example).
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: black channel in CMYK
Examples are made by the latest version 6.3.5-Q8 (Windows).anthony wrote:What version of IM are you using?
Small example of the original .png can be found from:anthony wrote:can you give a link to an example image (small example).
http://www.keskiespoo.net/~arinkala/im/rgb.png
at the same directory cmyk.tif is made by command
convert -colorspace CMYK rgb.png cmyk.tif
after that color channels are separated by both images.
convert rgb.png -colorspace CMYK -separate rgb_sep_%d.tif
convert cmyk.tif -colorspace CMYK -separate cmyk_sep_%d.tif
The files separated from rgb.png seems to be fine, but from cmyk.tif K-channel is zero.
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: black channel in CMYK
Okay so reading in a CMYK version of TIFF then applying -colorspace CMYK
stuffs up the image.
I would report exactly that in the bugs section.
stuffs up the image.
I would report exactly that in the bugs section.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: black channel in CMYK
The error might appear already in the conversion from .png. So, that the colorspace in the .tif file is CMY instead of CMYK.