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
124
votes
5 answers

Why rgb and not cmy?

Seeing as how the three primary colors are cyan, magenta and yellow (CMY), why do monitors and almost all the GUI components out there use red, green and blue (RGB)? (If I'm not mistaken, printers use the CMYK model.) Is there a historical,…
Zirak
  • 38,920
  • 13
  • 81
  • 92
31
votes
6 answers

Converting PDF to CMYK (with identify recognizing CMYK)

I am having much trouble to get ImageMagick's identify to, well, identify a PDF as CMYK. Essentially, let's say I'm building this file, test.tex, with pdflatex: \documentclass[a4paper,12pt]{article} %%…
sdaau
  • 36,975
  • 46
  • 198
  • 278
30
votes
8 answers

Using a CMYK PSD without Photoshop

I have run into a common, yet difficult problem. I do not use Photoshop for image manipulation. Since all my work is web-based, GIMP does what I need in 99% of the situations. The problem is that I occasionally receive PSD files with CMYK encoding…
64BitBob
  • 3,110
  • 1
  • 17
  • 23
22
votes
2 answers

SVG image with CMYK colours - is it possible?

Is it possible to specify that as SVG image should produce output in CMYK? If so, is it a big task? What if the image has its colours specified in RGB, is it difficult to convert them to CMYK?
DaveDev
  • 41,155
  • 72
  • 223
  • 385
22
votes
6 answers

How to convert from CMYK to RGB in Java correctly?

My Java code to convert a CMYK jpeg to RGB results in the output image being far too light - see code below. Can anyone suggest the correct way to do the conversion? The following code requires Java Advanced Image IO to read the jpeg and…
Mark
  • 4,749
  • 7
  • 44
  • 53
20
votes
3 answers

How to identify CMYK images using C#

Does anybody know how to properly identify CMYK images using C#? I found how to do it using ImageMagick, but I need a .NET solution. I found 3 code snippets online, only one works in Windows 7, but all fail in Windows Server 2008 SP2. I need it to…
Alex Gil
  • 203
  • 2
  • 5
18
votes
4 answers

C# convert RGB value to CMYK using an ICC profile?

this question seems posted at many places over the interwebs and SO, but I could not find a satisfactory answer :( How can I convert a RGB value to a CMYK value using an ICC profile? The closest answer I have is there, where it explains how to…
Bruno
  • 4,685
  • 7
  • 54
  • 105
16
votes
6 answers

How to identify CMYK images in ASP.NET using C#

Does anybody know how to properly identify CMYK images in ASP.NET using C#? When I check the Flags attribute of a Bitmap instance, I get incorrect results. I have created three images to test this: cmyk.jpg, rgb.jpg and gray.jpg. These are…
Kristof Claes
  • 10,797
  • 3
  • 30
  • 42
15
votes
4 answers

Pure Java alternative to JAI ImageIO for detecting CMYK images

first I'd like to explain the situation/requirements that lead to the question: In our web application we can't support CMYK images (JPEG) since IE 8 and below can't display them. Thus we need to detect when someone wants to upload such an image and…
Thomas
  • 87,414
  • 12
  • 119
  • 157
14
votes
4 answers

Script (or some other means) to convert RGB to CMYK in PDF?

Is it possible to write a script for Adobe Illustrator or some other tool that will read the contents of a number of PDF files and convert all the RGB colours to CMYK? If so, could somebody please point out some of the steps involved, or where to…
DaveDev
  • 41,155
  • 72
  • 223
  • 385
12
votes
3 answers

imagemagick convert CMYK pdf to RGB jpeg or PNG and preseerve colors

I have a cmyk pdf that I am trying to convert to a RGB jpeg or png file but have the colors stay pretty close to what the CMYK version is (compared to how photoshop does it) I am trying the following command but the colors change drastically from a…
Yeak
  • 2,470
  • 9
  • 45
  • 71
11
votes
6 answers

RGB to CMYK and back algorithm

I am trying to implement a solution for calculating the conversion between RGB and CMYK and vice versa. Here is what I have so far: public static int[] rgbToCmyk(int red, int green, int blue) { int black = Math.min(Math.min(255 - red,…
Jean-François Beaulieu
  • 4,305
  • 22
  • 74
  • 107
11
votes
3 answers

Converting RGB to CMYK , Using ICC Profile

I'm about to converting RGB color to CMYK for printing purpose. scale of this conversion is Adobe Photoshop ( Image -> Mode -> CMYK color ) I tried 2 solution , but none of them return the right value : Solution 1 - Using .NET Framework At first ,…
Mironline
  • 2,755
  • 7
  • 35
  • 61
11
votes
3 answers

How to create CMYK halftone Images from a color image?

I am working on a project that requires me to separate out each color in a CYMK image and generate a halftone image that will be printed on a special halftone printer. The method used is analogues to silk screening in that the process is almost…
10
votes
2 answers

Is there any client-side technology able to convert sRGB to CMYK through an ICC color profile?

Is there any technology available in a browser (client-side) able to convert sRGB colors to CMYK and vice versa using a specified ICC color profile? I'm currently using a hidden Java applet for the conversions (Java has a built-in class for this),…
Lea Verou
  • 23,618
  • 9
  • 46
  • 48
1
2 3
20 21