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

how to create a CMYK image from a RGB BITMAP in android

just like the title of the question, i want to ask how to create a CMYK image when i have a RGB image as a bitmap. I had reads question that generate the CMYK value from RGB value just like this code public static int[] rgbToCmyk(int red, int…
adi.zean
  • 1,085
  • 3
  • 12
  • 15
0
votes
3 answers

CMYK vs sRGB - which one is better

Guys i have 2 images one with CMYK color model and other with sRGB.. I would like to find out which color model is better to use while dealing with image processing like resizing, cropping, color filling etc.. Thanks in advance guys.. !
gursahib.singh.sahni
  • 1,559
  • 3
  • 26
  • 51
0
votes
1 answer

Problems with function colorPicker.CP.cmyc

The function colorPicker.CP.cmyc from JavaScript ColorPicker 0.9 (http://www.dematte.at/colorPicker/) always produces following error: TypeError: Cannot read property 'cmyc' of undefined
Jan Laussmann
  • 1,510
  • 3
  • 16
  • 19
0
votes
2 answers

Image from RGB To Cmyk in php

I've some problem with php and imagick, i want to convert some image from rgb system to cmyk, but i've only black/or non background nothing else. $icc_cmyk = file_get_contents('USWebUncoated.icc'); $img->profileImage('icc', $icc_cmyk); …
vuz3
  • 229
  • 2
  • 11
0
votes
1 answer

RGB TO CMYK conversion using Java

I'm trying to convert an RGB image to a CMYK image using Java. I've looked at this code: BufferedImage rgbImage = ImageIO.read(new File("d:\\Temp\\IMG_1748x2480.jpg")); BufferedImage cmykImage = null; ColorSpace cpace = new…
bigster
  • 63
  • 1
  • 1
  • 9
0
votes
1 answer

Image.Save question (save CMYK image to CMYK image)

In Windows Forms Application, I'm trying to open the image (CMYK tiff), add text, and then save back to CMYK tiff image, but when I opened the output image in Photoshop, it was RGB image (the colors looked different from the input image). Following…
0
votes
2 answers

CMYK color for Drawing Tools in Mathematica

I'm drawing graphs in Mathematica 9.0 and have converted all the colors to CMYK. Afterwards, I've added text and other information using the Drawing Tools palette. I'd like this stuff to be in CMYK color too, but can't find a way to change it. …
0
votes
2 answers

Using GDI+ to make 'PNG with added CMYK'?

I want to create a PNG file from a System.Drawing.Bitmap with the colours defined using CMYK. I can create the PNG OK but how do I define 'with CMYK' ? I've looked at the encoderparameters argument to the save method but it seems to me they don't…
shearichard
  • 1,095
  • 1
  • 17
  • 35
0
votes
1 answer

turn string of hexadecimal numbers into cmyk reference?

i have a huge file of hexadecimal numbers, from a wav file I opened in a hex editor. Is there a code (i'm using processing) to turn a string of these numbers into a cmyk reference? My tutor mentioned perhaps writing a code that takes every 4 or so…
0
votes
2 answers

c# Color Conversion CMYK to Cielab or RGB to Cielab using ICC Profile

I want to use the .icc Profile "ISOnewspaper26v4.icc" in C# ! But I have a problem now.. I don't know how to convert CMYK colors to Lab values or RGB to Lab values by using this ICC Profile ??!! How I can assign the profile??
Maxim
  • 317
  • 1
  • 5
  • 13
0
votes
1 answer

.Net based Vector CMYK Graphics library

We have an application that facilitates a process and the end result is printed pages of advertisements. The current implementation uses GDI+ commands in c# to draw the ads in a design environment, allow visual arrangement of the ads and print the…
Alireza
  • 5,421
  • 5
  • 34
  • 67
0
votes
2 answers

is RGB to CMYK conversion 1:1?

If I do not filter through an ICC profile, is CMYK to RGB conversion 1:1? Looks like it when using color pickers like this one.
jedierikb
  • 12,752
  • 22
  • 95
  • 166
0
votes
1 answer

DirectCast not working

'ofd is open file dialog Dim img As Bitmap Dim iscmyk As Boolean Dim i As String Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ofd.Filter = "Jpg Image(*.jpg)|*.jpg" If…
Dandy
  • 467
  • 1
  • 10
  • 33
0
votes
1 answer

CMYK color values to its int equivalent

I have CMYK color values ( 0, 0.58 ,1 ,0 ) . Now I have to convert to its Integer equivalent using C# . I think it is possible using Bitwise operator but not sure . Kindly assist me how can achieve same . Thanks, Pawan
user1641519
  • 377
  • 1
  • 4
  • 17
0
votes
1 answer

calculate white in cmyk

I want to calculate the coverage of cmyk color + the coverage of white. I only have no clue of how to calculate the white. if c, m, y, and k go from 0 to 1 is then white: w = 1 - (c+m+y+k/4) or is it: w = 1- c-m-y-k (and the clamped to be 0 or above…
clankill3r
  • 9,146
  • 20
  • 70
  • 126
1 2 3
20
21