Questions tagged [cmyk]

CMYK refers to the standard color model, and related techniques, involved with the four-colour printing process: Cyan, Magenta, and Yellow, and Key (black).

In the traditional four-color printing process (also called process printing), colour is produced by depositing four separate layers of colour over each other: Cyan, Magenta, Yellow, and Black.

The four colors used in the CMYK color model

The abbreviation "CMYK" derives from the initial letters of the three colours, while black is indicated with a "K" for key. This is because black is used to ink the key plate, which contains the artistic detail, or "key" information for the image.

It also refers to the final stage of pre-press, where the final image is separated into four grid layers: one layer for each colour, each rotated slightly to achieve optimal coverage and minimize interference between layers.

CMYK is a subtractive model, meaning that it produces darker colors by adding more pigment, thus causing less light to be reflected. This differs from the use of colour on computer screens, which uses the additive RGB model.

The conversion from one model to another is a standard problem in pre-press software. Questions with the tag will typically be ones focused around this conversion process.

308 questions
10
votes
6 answers

IE6 - can't load a normal JPG

Try loading this normal .jpg file in Internet Explorer 6.0. I get an error saying the picture won't load. Try it in any other browser and it works fine. What's wrong? The .jpg file is just a normal picture sitting on the web server. I can even…
andrewrk
  • 30,272
  • 27
  • 92
  • 113
9
votes
2 answers

How to convert a rgb image into a cmyk?

I want to convert a RGB image into CMYK. This is my code; the first problem is when I divide each pixel by 255, the value closes to zero, so the resulting image is approximately black! The second problem is that I don't know how to convert the…
MH.AI.eAgLe
  • 592
  • 1
  • 6
  • 22
9
votes
1 answer

Printing Umlauts in Matlab

I’m am trying to create a pdf file from matlab figure using cmyk colors, but facing a problem with umlauts and also some other special characters. Is there any other way to handle this than Latex? The following example demonstrates the…
Pekka
  • 91
  • 2
9
votes
7 answers

Convert RGB color to CMYK?

I'm looking for an algorithm to convert an RGB color to CMYK. Photoshop is performing the conversion below: R = 220 G = 233 B = 174 C = 15 M = 0 Y = 40 K = 0
Junior Developer
  • 161
  • 1
  • 1
  • 4
8
votes
2 answers

Using CMYK colours in WPF/XAML

Is there any way to specify CMYK colours directly in a XAML document? prefixing them with # character will create RGB colours, but how to specify a CMYK colour? Some notes: The question is NOT about converting from CMYK to RGB but to use real…
el_shayan
  • 2,735
  • 4
  • 28
  • 42
7
votes
3 answers

Converting (any) PDF to black (K)-only CMYK

This is related to: Converting PDF to CMYK (with identify recognizing CMYK). Script (or some other means) to convert RGB to CMYK in PDF? ... but a bit more specific here: say I have an RGB PDF, where the text color is "rich black" (R:0 G:0 B:0…
sdaau
  • 36,975
  • 46
  • 198
  • 278
7
votes
1 answer

How to use CMYK colors in Inkscape?

I am using Inkscape 0.91. I have created an artwork using Inkscape and converted it into PDF. While taking print copy I could not get the exact color used. How to make it CMYK mode? Thanks in advance.
user2118784
  • 442
  • 1
  • 6
  • 18
7
votes
3 answers

CMYK images turn negative with TCPDF

I have a problem using TCPDF to generate PDF images containing a CMYK PNG file. The system allows the user to upload photos, which can be JPG, GIF or PNG. ImageMagick converts these images into CMYK from RGB where necessary. The image is then…
scrowler
  • 24,273
  • 9
  • 60
  • 92
7
votes
5 answers

CMYK + CMYK = ? CMYK / 2 =?

Suppose there are two colors defined in CMYK: color1 = 30, 40, 50, 60 color2 = 50, 60, 70, 80 If they were to be printed what values would the resulting color have? color_new = min(cyan1 + cyan2, 100), min(magenta1 + magenta2, 100), min(yellow1 +…
Pete
6
votes
3 answers

cmyk to rgb using php

I'm using the following script to save images on a folder, but there is one image that shows this message "the image cannot be displayed because it contains errors". I think the problem is something called cmyk and rgb on the image, but when…
user983248
  • 2,588
  • 7
  • 24
  • 44
6
votes
4 answers

Java CMYK to RGB with profile. Output is too dark

Similar question has been asked many times. But I still don't get why I get too dark output after I converted a picture with ICC_Profile. I've tried many profiles: from Adobe site, and from the picture itself. Before Image After…
nixspirit
  • 509
  • 1
  • 7
  • 19
6
votes
2 answers

Calculate CMYK coverage on PDF

I don't suppose is there any free or open source libraries out there that able to calculate the CMYK coverage on a pdf file. I tried looking around I don't seem to able to find any. If there isn't any out there if anyone could point me in the right…
madness800
  • 181
  • 1
  • 2
  • 13
6
votes
0 answers

Conversion CMYK => RGB has incorrect colors although using color profiles

I have an CMYK tif image and want to convert it to an RGB jpeg/png using ImageMagick. The tif image has an profile integrated but is not converted correctly (colors completely incorrect) by ImageMagick even if i specify the sRGB profile…
Werzi2001
  • 2,035
  • 1
  • 18
  • 41
5
votes
2 answers

In Android how to decode a jpeg in cmyk color format?

I'm trying to decode a jpeg that is in CMYK color format. BitmapFactory returns null. I googled around but with no luck. Is it possibile Android team did not the right job supporting all kind of color format? I'm using Android 2.2. Thank you so…
godness
  • 134
  • 1
  • 8
5
votes
2 answers

What is the 4th channel in an image?

what does the column imply when randomly generating an image using np.random.randint img = np.random.randint(255, size=(4,4,3), dtype='uint8') This creates a 4 by 4 pixel, with a matrix of 3 columns. img = np.random.randint(255, size=(4,4,4),…
PolarBear10
  • 2,065
  • 7
  • 24
  • 55
1
2
3
20 21