CMYK text

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: CMYK text

Post by Bonzo »

This works for me - the colours are wrong I know.

Code: Select all

convert -size 100x100 xc:cmyk(100,0,0,0) -pointsize 20 -fill cmyk(100,0,0,0)  -annotate +25+70 Test Test.jpg
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: CMYK text

Post by magick »

Drawing is performed in the RGB colorspace. We might add CMYK support to the drawing/annotation engine in the future but we don't have an ETA just yet.
Post Reply