Generating CMYK text
Posted: 2012-11-26T18:10:05-07:00
I am trying to generate CMYK text with accurate values for C,M,Y,K channels to be used in a printing project. However after using this command:
when I open the file in Photoshop the CMYK values I see are: (0,25,47,52). I'm thinking maybe IM converts CMYK values to RGB when generating text and then converts it back to CMYK after -colorspace switch and since CMYK<->RGB is not a 1-to-1 mapping this shift happens (not sure though). Does anyone know how I can generate and output text (and other elements) while keeping the exact CMYK values?
Thanks.
Code: Select all
convert -fill "cmyk(20%,30%,40%,10%)" -pointsize 100 -colorspace cmyk label:TEST 1.jpg
Thanks.