Wrong colour drawing CMYK rectangle
Posted: 2008-03-05T02:30:44-07:00
Hello,
I believe the is a problem with cmyk colour when drawing, I do use the following code:
The colour of the rectangle is supposed to be dark blue, but it gets orange (cmyk(0, 34%, 66%, 0).
Am I doing it the wrong way?
I believe the is a problem with cmyk colour when drawing, I do use the following code:
Code: Select all
convert -density 300x300 -colorspace CMYK -depth 8 -fill "[b]cmyk(100%, 60%, 0, 30%)"[/b] -draw "rotate '-10' rectangle 3000,2500 4196,2858'" -font "AGaramondPro-Semibold.otf" -pointsize 45.8 -fill "cmyk(255, 255, 255, 255)" -draw "rotate '-10' text 3150,2750 'COUPON!'" output.tif rec.tif
Am I doing it the wrong way?