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
4
votes
1 answer

eps cmyk color matplotlib output

I need to output my plots in EPS with the CMYK color space. Unfortunately this particular format is requested by the journal I am submitting my work to! This discussion was the only one I could find that has addressed the issue but it is more than…
makhlaghi
  • 3,856
  • 6
  • 27
  • 34
4
votes
1 answer

How to convert CMYK/RGB TIFF to RGB JPEG using PHP IMagick

I have a PHP application which needs to deal with incoming TIFF files. I have neither control nor knowledge over the colorspaces of this TIFFs and the application should store all incoming images as RGB JPEGs. Problem is, incoming TIFF files are…
hijarian
  • 2,159
  • 1
  • 28
  • 34
4
votes
1 answer

Converting RGB PDF to CMYK PDF

I'm looking for a way to convert a PDF with RGB colors to one with CMYK colors. I have tried different programs like Ghostscript and PStill but none of them seem to do the right job. Does somebody know a ways that works 100% and can be run via the…
vespino
  • 1,714
  • 3
  • 15
  • 28
4
votes
2 answers

What is the formula to convert a color in CMYK to hex?

What is the formula for converting a color encoded in CMYK to its hexadecimal equivalent?
ram1
  • 6,290
  • 8
  • 41
  • 46
3
votes
1 answer

Issue with color profile of CMYK image

TL;DR I'm chasing a color problem that occurs for one of our images which appears in different green tones in different viewers. The source image Most image viewers render it light green. including Chrome, XnView Some image viewers render it…
agoldev
  • 2,078
  • 3
  • 23
  • 38
3
votes
0 answers

How to check a color is out of cmyk gamut (range)?

There is a color in RGB model, such as rgb(255,0,0) or #FF0000, I know that the RGB gamut is bigger than cmyk gamut, I also know that cmyk is related to printing devices and ICC files. Is there any way or algorithm figure out is out of the CMYK…
MichaelJK
  • 31
  • 2
3
votes
1 answer

Convert CMYK PDF to SRGB JPG using PHP and Imagick

I'm trying to convert the first page of PDF documents to a JPEG using Imagick and PHP. As long as the colorspace of the PDF is SRGB, conversion succeeds and the resulting images have correct colors. However, if the PDF has a CMYK colorspace, after…
Tomasz Nguyen
  • 2,561
  • 22
  • 25
3
votes
2 answers

How do I (very approximately) generalize the name of the color based in it's CMYK or RGB numbers?

I am processing an image pixel by pixel and I need to get name of the color for each pixel. I have these main color names: yellow, magenta, cyan, red, green, blue, white, black. I also have RGB and CMYK numbers of each pixel. How would I approximate…
Army
  • 105
  • 1
  • 8
3
votes
1 answer

Replacing images in PDF documents with Python?

We generate PDF documents with RGB images stored in a CMS. As part of the PDF processing we sometimes have the need to convert the RGB images to CMYK (for print productions). Converting the images from RGB to CMYK seems to be feasible with…
user2665694
3
votes
3 answers

Anomalous behavior (or possible bug) in JColorChooser

When using JColorChooser, entered CMYK values translate to a specific RGB color. When that color is entered manually on the RGB side, the CMYK values are not the same as before. The following program can be used to demonstrate the behavior I am…
WJS
  • 36,363
  • 4
  • 24
  • 39
3
votes
4 answers

PHP IMagick RGB to CMYK inverts?

I'm trying to convert a RGB .gif to a CMYK .gif using IMagick PHP module. I've wrote this piece of code $i = new…
Riccardo
  • 1,309
  • 1
  • 25
  • 35
3
votes
1 answer

How to add text to images with the CMYK ColorSpace in .NET 4

I am working on a project that at it's core involves adding text to an image, so as an example given a background image (B) and some text in a specified font, point size and font (A) the two are composited together to produce (C): The eventual…
Richard Slater
  • 6,313
  • 4
  • 53
  • 81
3
votes
1 answer

Plotting CMYK color space as 3D color solid

I am using the following POV-Ray loop to plot sRGB coordinates in other color spaces. The loop only generates points along the outer surface, and then connects them with triangles. Since the sRGB space is a sort of twisted cube, that means 6 outer…
posfan12
  • 2,541
  • 8
  • 35
  • 57
3
votes
2 answers

Draw CMYK Color from RGB

Hello. I have a screen like above. By using the sliders, I get red, green, blue. Also, I calculate cyan, magenta, yellow and from red, green, blue for CMYK. My question is that is there any way to show CMYK colour in java like light purple in the…
Ms.Sahin
  • 101
  • 8
3
votes
1 answer

The are any CMYK graphics library?

I'm looking for graphics library with CMYK support(JPG or TIF). I have to read one big image file and one small, then write second on first. Output have to be also CMYK(without any CMYK->RGB conversion). There are any? (C#/C++/Java or somthing else)
spiaire
  • 67
  • 7