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
2
votes
2 answers

JMagick - How to convert a picture from CMYK to RGB?

I know there exists another post dealing with that problem How to convert colorspace using JMagick? but but there is something I do not understand: String baseName = "Pictures/"; String fileName = "dragon.gif"; MagickImage imageCMYK; …
Johann
  • 447
  • 2
  • 8
  • 23
2
votes
3 answers

C#: How to get the color value (in CMYK) at a position on PDF page?

I have a CMYK color PDF file (with one page and image only, no text). I want to get the CMYK color value of a 'pixel' in this PDF file (I call a position as 'pixel'), currently I do it as follow: - Convert the PDF page to bitmap
- Get the…
huynhtuanh
  • 327
  • 1
  • 5
  • 17
2
votes
1 answer

Color is wrong when converting CMYK images to RGB using imagemagick

I had a bunch of images uploaded as cmyk and I needed to convert them to rgb. I used the line exec("convert -colorspace RGB " . $myfile . " " . $myfile); But the color is way off (example, a brownish color looks greenish). I'm not sure why it's…
AllisonC
  • 2,973
  • 4
  • 29
  • 46
2
votes
1 answer

Converting RGB PDF in CMYK with plain black using ghostscripts sOutputICCProfile

currently i am generating a pdf using weasyprint version 52.5. The pdf generated is in RGB but i need it in CMYK for printing. Now i tried converting it using ghostscript version 9.50 which works just fine, but my generated PDF always consists of…
David Marogy
  • 116
  • 7
2
votes
1 answer

How many possible CMYK colour combinations?

How many possible colour combinations are there in a the CMYK gamut? I know there are advanced printing methods such as half-toning and spot colours, but excluding print methods, how many possible colours are available in CMYK? One website mentions…
AutoBaker
  • 919
  • 2
  • 15
  • 31
2
votes
1 answer

PHP lib for print save PDFs?

I need to create print save PDFs with PHP, is there a library which supports embedded fonts and the CMYK color model?
powtac
  • 40,542
  • 28
  • 115
  • 170
2
votes
2 answers

Why if i extract image jpg from pdf with wand, it turn me a black background over the text

I have a problem with some pdf files. I need to convert them into jpg images making them available for the OCR, but when I convert some of them, Wand turn me jpg where there is a black background over the text. I saw that it is a common problem…
2
votes
1 answer

How do CMYK/RGB color spaces work in pdfs and images, and how does it affect their inter convertibility?

I have a task where I need to take PDFs that are mock ups of printing products, and check their resolution, size and colour-space. I need to use Imagick with PHP to complete this task. The printing shop that will print these PDFs only have CMYK…
Debopam Parua
  • 460
  • 1
  • 4
  • 24
2
votes
0 answers

Transcode CMYK TIFF files with Batik (Java)

I am trying to convert an SVG file via Batik to TIFF. In the SVG File all the color values are defined as device-cmyk. The SVG looks like this:
XleKle
  • 73
  • 6
2
votes
0 answers

Ghostscript to convert graphics to rich black when converting to CMYK

I'm using Ghostscript 9.22 to convert a PDF to CMYK, but can't seem the get the right CMYK-values for a black colored graphic object: input PDF (rgb): contains 2 images and 1 (black, R: 0%, G: 0%, B: 0%) graphic. output PDF (cmyk): images are…
Adriaan Meuris
  • 351
  • 2
  • 12
2
votes
2 answers

How can a color definition look so different in RGB and CMYK colors spaces?

How can a color definition look so different in RGB and CMYK colors spaces? (on my screen) e.g. this Pantone color : https://www.pantone.com/color-finder/Purple-C the CMYK: http://www.wolframalpha.com/input/?i=cmyk+40+90+0+0 and RGB:…
stallingOne
  • 3,633
  • 3
  • 41
  • 63
2
votes
3 answers

CMYK to RGB formula of Photoshop

Is there a place where I can get the formula which photoshop uses to convert rgb to cmyk? I know there are formulas on the web, but photoshop does not use this formula. It converts the collors different. Can someone tell me the photoshop…
Van Coding
  • 24,244
  • 24
  • 88
  • 132
2
votes
1 answer

Write image in java with CMYK color space

I want to write an image in java using CMYK color space like this: BufferedImage image= new BufferedImage(path.getBounds().width, path.getBounds().height, BufferedImage.TYPE_INT_ARGB); Graphics2D g2d = image.createGraphics(); color c = new…
Abadir
  • 65
  • 1
  • 9
2
votes
3 answers

How to create a cmyk image in python

Is it possible to create a cmyk image using python like a rgb image? suppose we have an 2d array and each element is a 4-dim vector! How can we convert it to a cmyk image?
2
votes
3 answers

Get base colours percentage from base colours

Basically I'm trying to create a printer which print colours using 3 cartridges as base colours; let's call them A,B and C. Machine operating: The machine mix an amount of each cartridge to get a new color (the sum of all the amounts should be…