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

Create Image From A Binary File?

I Need help to create an image preview from A Riped Binary File in C#. The File Having the Following information in first 48 byte. nSignature; // 0x1234 (DATA in 4-byte ) nXDPI; // Image XDPI (DATA in 4-byte ) nYDPI; // …
0
votes
1 answer

PHP Imagick (ImageMagick) RGB > CMYK with Flat Black

I'm using PHP Imagick to convert PNG images generated in PhantomJS to TIF CMYK, for print purposes I need a flat Black (cmyk - 0,0,0,100) - the conversion generates blacks like (cmyk - 58,49,44,89). I'm converting the images using color profile…
nirhere
  • 5
  • 4
0
votes
1 answer

What settings should I use to keep the colour correct when converting a PDF to x-3:2002 with ghostscript?

I have an application that generates a PDF with TCPDF and then uses Ghostscript to convert it to x3:2002 compatibility. Using the command line, I call this command: gs -dPDFX -dBATCH -dQUIET -dNOPAUSE -dNOOUTERSAVE -sProcessColorModel=DeviceCMYK…
Jammooka
  • 3
  • 4
0
votes
1 answer

Java: How to work with CMYK image?

I know that RGB is for monitors and CMYK is for printing, but I want to work with CMYK without any conversions. I want to upload a CMYK image (jpeg) and print it. But when I used com.sun.image.codec.jpeg.JPEGImageDecoder decoder =…
Filosssof
  • 1,288
  • 3
  • 17
  • 37
0
votes
1 answer

Android processing a video to CMYK

I am working on a project and in that project I need to be able to: get a frame of a video change it to a CMYK try to render that frame Do you guys have any suggestions? To get the frames I think I can use ffmpeg. I think the person that…
bigben619
  • 5
  • 3
0
votes
1 answer

ARGB int array to CMYKA byte array convertion

In this question: Convert RGB to CMYK, I got a way to convert RGB int array to CMYK byte array. Now I hope to convert ARGB int array to CMYKA byte array directly instead of working with the resulting CMYK array and adding the extra alpha channel…
dragon66
  • 2,645
  • 2
  • 21
  • 43
0
votes
2 answers

Saving grayscale in CMYK using libjpeg in c

If this function does what I think it does, it seems that on my machine at least in CMYK, C=0, M=0, Y=0 and K=0 does not correspond to white! What is the problem? float *arr is a float array with size elements. I want to save this array as a JPEG…
makhlaghi
  • 3,856
  • 6
  • 27
  • 34
0
votes
1 answer

what is algorithm of photoshop for converting rgb to cmyk as percentage?

what is algorithm of photoshop for converting rgb to cmyk as percentage ? for example: R G B C M Y K 0 0 0 => 75% 68% 67% 90% 3 0 0 => 100% 100% 100% 100% 149 91 56 => 32% 65% 84% 21% 255 255 255 => 0% 0% …
user2057190
0
votes
1 answer

lcms2 convert CMYK to RGB through profiles in C - Help on input / Output values

I'm trying to use lcms2 lib to convert CMYK to RGB through icc profiles. I have found some example code on http://www.littlecms.com/1/TUTORIAL.TXT -> Sample 1: How to convert RGB to CMYK and back But if I use that in my code with two given profiles…
0
votes
1 answer

How to work with CMYK colors in jQuery.colorpicker?

I would like to use the nice jQuery colorpicker (https://github.com/vanderlee/colorpicker) with CMYK colors. To get the cmyk values from the dialog I use colorFormat: ['EXACT', 'cp;mp;yp;kp'], That results in something like this …
smartmeta
  • 1,149
  • 1
  • 17
  • 38
0
votes
0 answers

How to extract CMYK color values from a image (tiff) data byte array

Basically I need to extract CMYK color values from a byte array containing image data (tif image). I am not interested in converting the values to rgb colorspase. I just need to extract the cyan, magenta, yellow, and key (black) values (ideally in…
user1479847
  • 107
  • 11
0
votes
1 answer

Using CMYK colorspace in PCL XL, possible?

Is it possible to use PCL XL to print CMYK composite halftone (1-bit) data? Or do I have to somehow convert it to 8bit RGB data?
krebstar
  • 3,956
  • 8
  • 46
  • 64
0
votes
0 answers

Read CMYK tags from tiff image using libtiff

I need to read C M Y and K bits from .tiff image using libtiff. I have set this so far: TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 4); TIFFSetField(tif, TIFFTAG_PLANARCONFIG, PLANARCONFIG_SEPARATE); TIFFSetField(tif, TIFFTAG_PHOTOMETRIC,…
0
votes
3 answers

Convert TIFF to PostScript

I'm writing .net code (Windows Forms Application) which reads a TIFF image (CMYK) and sends it to printer (using WritePrinter). Before I send it, I need to convert the TIFF image to PostScript. Could any of you share the code how to create…
0
votes
1 answer

Generate RGB to CMYK value in android

i want to generate RGB to CMYK value using this code pixel = temp.getPixel(i,j); R = Color.red(pixel); G = Color.green(pixel); B = Color.blue(pixel); K = Math.min(Math.min(255-R, 255-G), 255-B); if (K!=255){ c =…
adi.zean
  • 1,085
  • 3
  • 12
  • 15