Recolor Grayscale- (or CMYK-)Image?
Posted: 2012-08-23T02:29:57-07:00
Hi,
my situation:
I have a Grayscale Image (e.g. grayscale.tif) which I want to convert to a recolored CMYK.
I have my CMYK-Values:
C=1, M=0.72, Y=0, K=0.18
So far, I all my tries ended either with a K=0 or K=1 channel.
This is what I have done:
Using -recolor on the grayscale image:
convert grayscale.tif -set colorspace CMYK -recolor "1,0,0,0, 0,0.72,0,0, 0,0,0,0, 0,0,0,0.18" cmyk.tif
Result in Photoshop for the four channels:
C=1, M=0.72, Y=0, K=0
Using -combine on my grayscale image and than recolor:
convert -combine grayscale.tif grayscale.tif grayscale.tif grayscale.tif -set colorspace CMYK temp.tif
convert temp.tif -set colorspace CMYK -recolor "1,0,0,0, 0,0.72,0,0, 0,0,0,0, 0,0,0,0.18" cmyk.tif
Result in Photoshop for the four channels:
C=1, M=0.72, Y=0, K=1
Has anybody some hints for me?
I am using imagemagick 6.6.0-4 on debian squeeze.
my situation:
I have a Grayscale Image (e.g. grayscale.tif) which I want to convert to a recolored CMYK.
I have my CMYK-Values:
C=1, M=0.72, Y=0, K=0.18
So far, I all my tries ended either with a K=0 or K=1 channel.
This is what I have done:
Using -recolor on the grayscale image:
convert grayscale.tif -set colorspace CMYK -recolor "1,0,0,0, 0,0.72,0,0, 0,0,0,0, 0,0,0,0.18" cmyk.tif
Result in Photoshop for the four channels:
C=1, M=0.72, Y=0, K=0
Using -combine on my grayscale image and than recolor:
convert -combine grayscale.tif grayscale.tif grayscale.tif grayscale.tif -set colorspace CMYK temp.tif
convert temp.tif -set colorspace CMYK -recolor "1,0,0,0, 0,0.72,0,0, 0,0,0,0, 0,0,0,0.18" cmyk.tif
Result in Photoshop for the four channels:
C=1, M=0.72, Y=0, K=1
Has anybody some hints for me?
I am using imagemagick 6.6.0-4 on debian squeeze.