Code: Select all
convert -fill "cmyk(20%,30%,40%,10%)" -pointsize 100 -colorspace cmyk label:TEST 1.jpg
Thanks.
Code: Select all
convert -fill "cmyk(20%,30%,40%,10%)" -pointsize 100 -colorspace cmyk label:TEST 1.jpg
try changing the order of your options so you create the label image before changing colorspaceconvert -fill "cmyk(20%,30%,40%,10%)" -pointsize 100 -colorspace cmyk label:TEST 1.jpg
My understanding is that this is a correct assumption. You probably would be better using a profile than -colorspace. Something like:I'm thinking maybe IM converts CMYK values to RGB when generating text and then converts it back to CMYK after -colorspace switch
Oops. I made an error here and left in CMYK.icc. It should have beenfmw42 wrote:convert -fill "cmyk(20%,30%,40%,10%)" -pointsize 100 label:TEST -colorspace cmyk CMYK.icc 1.jpg
Code: Select all
convert -fill "cmyk(20%,30%,40%,10%)" -pointsize 100 label:TEST -colorspace cmyk 1.jpg