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

how can I convert an RGB image to CMYK and vice versa in Java?

our web app let users download dynamically generated images in different formats (bmp, png and jpeg). Some of our users download the images for printing, thus we would like to allow them to choose between RGB or CMYK. Is there a way to specify the…
Olivier
  • 305
  • 1
  • 4
  • 17
5
votes
3 answers

WPF BitmapImage and TIFF with CMYK + Alpha

I am using this code snippet to load various image files: BitmapImage bitmap = new BitmapImage (); bitmap.BeginInit (); bitmap.UriSource = new System.Uri (path); bitmap.CreateOptions = BitmapCreateOptions.PreservePixelFormat; bitmap.EndInit…
Pierre Arnaud
  • 10,212
  • 11
  • 77
  • 108
5
votes
1 answer

how can convert image cmyk to rgb mode in javascript

I have a problem: Browsers do not support showing images in CMYK mode and the client see some really sharp and different colors in his uploaded image while the colors is alright. solve this problem i think its a good idea to convert an CMYK image…
Amin Rezazade
  • 51
  • 1
  • 3
5
votes
2 answers

ghostscript: convert PDF into CMYK preserving pure Black for text

I need to convert RGB PDF into CMYK PDF. I need to have pure black color for texts. It seems (thanks to comments below) term "black point compensation" is wrong. I took it from Adobe Acrobat where it works exactly how i need. I thought gs has same…
Ivan Gusev
  • 252
  • 5
  • 10
5
votes
3 answers

PDF Thumbnail always generated as grayscale using Imagick

I am stuck and could really use some help on this one. I am using PHP and Imagick to generate a thumbnail which is working great. However, I noticed that CMYK PDFs are generated always as grayscale. So I tested this by taking the CMYK PDF and…
wesleywh
  • 1,053
  • 1
  • 13
  • 30
5
votes
3 answers

Images appear like they are CMYK when uploaded to web. However, they are RGB

I have worked with images/Photoshop for a long time and have never had this problem. Basically, I tried uploading a few images to WordPress and they appear like this: As you can see, the one highlighted in green turns out fine. However, the other…
J82
  • 8,267
  • 23
  • 58
  • 87
5
votes
2 answers

how convert RGB or CMYK color to percentage CMYK - javascript

I use this snippet to convert RGB color to CMYK in javascript: function RgbToCmyk(R,G,B) { if ((R == 0) && (G == 0) && (B == 0)) { return [0, 0, 0, 1]; } else { var calcR = 1 - (R / 255), calcG = 1 - (G / 255), …
user2057190
4
votes
1 answer

Color profiles conversion

I have a project on color profile conversion in C++, where the idea is to use CIELAB as transition between RGB and all others (CMY; CMYK; HSV; HSL;...).But I have one big big problem. I have searched everywhere and I cannot find any formula or…
magic
  • 41
  • 2
4
votes
4 answers

How to convert PDF from CMYK to RGB, for displaying on iPad?

According to this question: Displaying PDF documents on iPad - Color Problems some PDFs don't display right on iOS devices due to colors not being in RGB. It's also mentioned that converting PDFs from CMYK to RGB could be automated using…
Robert Kovačević
  • 1,378
  • 4
  • 16
  • 23
4
votes
1 answer

RMagick: Convert CMYK EPS to RGB PNG maintaining transparent background

I've spent a long time trying to go from a CMYK EPS to a RGB PNG using RMagick and Rails. Hopefully this will be of use to someone: def convert_image_from_cmyk_to_rgb( image ) #puts image.alpha? if image.colorspace == Magick::CMYKColorspace …
4
votes
4 answers

Android CMYK mode

I have a Bitmap in CMYK mode, which doesn't show correctly, and at some point not at all, on Android. Googling didn't return many answers, so I have to ask here how do I handle CMYK mode images? Thanks UPDATE Ok, more info as requested. I have a…
Pett
  • 171
  • 5
  • 7
4
votes
2 answers

RGB image to CMYK and soften colors

How to convert from RGB to CMYK soften/reduce color weight (avoid melt in printing press) in ruby? It's for a rails app. Links are ok, code examples are awsome.
oma
  • 38,642
  • 11
  • 71
  • 99
4
votes
0 answers

Save PDF in CMYK colour profile

I have an iOS app written in Swift, where you can create images with texts etc. In the end, you can create a PDF, which is destined for printing. I've got a response from the printing house that it has to be in 300 DPI, which I've fixed, but they…
Makalele
  • 7,431
  • 5
  • 54
  • 81
4
votes
2 answers

Ghostscript outputs blank pdf

I'm using following command in PHP to convert a PDF with RBG colors to CMYK colors: $input = PDF_DIR . 'input.pdf'; $output = PDF_DIR . 'output.pdf' exec("'gs' '-sDEVICE=pdfwrite' '-dUseCIEColor' '-sProcessColorModel=DeviceCMYK' …
user3070053
  • 51
  • 1
  • 4
4
votes
1 answer

How to set profile using Magick.net in the same way using Image Magick?

I convert image based on CMYK to image based on RGB in the following way using ImageMagick(command Line) : convert.exe -profile icc:JapanColor2001Coated.icc -colorspace cmyk input.jpg -profile icc:sRGB.icc -colorspace sRGB output.jpg And I…
user2798778
  • 41
  • 1
  • 2
1 2
3
20 21